<input>태그의 type속성

Seulyi Yoo·2022년 6월 29일
0

html, css grammer

목록 보기
8/27
post-thumbnail

기본형 <input type="text" [속성="속성값"]>

  • 가장 많이 사용하는 요소
  • 아이디나 이름, 주소, 통합검색 등의 텍스트를 입력할 때 주로 사용됨
titledesc
hidden사용자에게는 보이지 않지만 서버로 넘겨지는 값을 가짐
text한 줄짜리 텍스트를 입력할 수 있는 텍스트 상자
search검색상자
tel전화번호 입력필드
urlurl 주소입력
email메일 주소 입력
password비밀번호입력
●●●●
datetime
dateline
number
range
checkbox
radio
datetime-local, date, mondth, time, color, file, image, submit, reset, button
  • input태그의 type 속성 중, submit/reset/button은 버튼을 만드는 속성을 가지고 있으며, value값에 버튼의 이름을 지정할 수 있음
  • 보통 submit를 사용하기보다는, button태그 안에 img태그를 이용하여 전송하기 버튼을 만듬.
<form>
    <button type="submit" class="subm">
      <img src="https://cdn-icons-png.flaticon.com/512/5632/5632356.png" alt="전송하기" style="width: 200px;">
    </button>
</form>

profile
성장하는 개발자 유슬이 입니다!

0개의 댓글