size : 텍스트 필드 , 비밀번호 필드 , 검색 필드와 같이 한 줄로 입력되는 필드에서 화면에 몇 글자까지 보여지게 할지 지정
maxlength : minlength와는 반대로 최대 몇 글자까지 입력할 수 있는지를 지정
minlength : 최소 몇 글자까지 입력해야 하는지를 지정
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!
DOCTYPE
html>
<html lang
=
"kr"
>
<head>
<meta charset
=
"utf-8"
>
<title>
키보드와 하루
</title>
</head>
<body>
<form>
1
<label>
size 속성 :
</label>
<input type
=
"text"
size
=
"10"
><br><br>
2
<label>
maxlength 속성 :
</label>
<input type
=
"text"
maxlength
=
"10"
><br><br>
3
<label>
minlength 속성 :
</label>
<input type
=
"text"
minlength
=
"5"
>
</form>
</body>
</html>
|
[html5] iframe - 다른 html을 호출하기 위한 프레임 (0) | 2021.02.22 |
---|---|
[html5] multiple,datalist - 데이터 목록 나열 (0) | 2021.02.19 |
[html5] readonly,required - 읽기 전용,필수 값 지정 (0) | 2021.02.17 |
[html5] autofocus,placeholder - 커서 위치,힌트 표시 (0) | 2021.02.16 |
[html5] input type = image,button,file - 이미지 버튼, 버튼 , 파일 첨부 (0) | 2021.02.15 |