상세 컨텐츠

본문 제목

placeholder ,form

초보코딩

by wangmandoo1 2024. 7. 24. 14:26

본문

값이 비어 있을 때 보여주는 값  

placeholder 

 

<input name="username" placeholder="이메일 또는 휴대전화">

 

 

 

기본적인 폼 

<form>
  <label for="username">아이디</label>
  <input id="username" name="username">
  <label for="password">비밀번호</label>
  <input id="password" name="password" type="password">
  <button>로그인</button>
</form>

 

id 와 for 을 일치 시켜 줘야한다 

 

'초보코딩' 카테고리의 다른 글

class Vs function  (0) 2024.07.26
link tag  (0) 2024.07.24
개별 과제 진행중  (0) 2024.07.23
변수 ,정수 실수 지수형 nan infinity  (0) 2024.07.21
background-image , background position  (0) 2024.07.20

관련글 더보기