범위 입력
<input type="range" min="0" step="10" id="rangeid"> <br>
<input type="file" name="files" multiple><br>
<input type="date" class="inputz"> <br>
<input type="month" class="inputz"> <br>
<input type="week" class="inputz"> <br>
<input type="time" class="inputz"> <br>
<input type="time" min="09:00" max="16:00" step="1800">
시간 값도 마찬가지로 최소 최대 범위를 지정해줄 수 있으나 JSP에서는 원활하게 돌아가지 않는 듯 하다.
<input type="color" class="color"><br>
<input type="text" list="sample">
<datalist id="sample">
<option value="서울">서울</option>
<option value="경기">경기</option>
<option value="구기">구기</option>
</datalist>
Autocomplete="off"/ on 을 추가할 수 있으나 JSP에서는 효과가 없다.
선택 태그
<select name="a1">
<option value=1 selected>서울
<option value=2> 경기도
<option value=2> 인천광역시
</select>
placeholder : 미리 회색 글씨로 입력이 되어 있다.
[
'Css Style' 카테고리의 다른 글
| input type (0) | 2014.08.01 |
|---|---|
| css background (0) | 2011.01.07 |
| 홈페이지 제작시 사용되는 스타일시트(CSS) 정리 (0) | 2011.01.07 |
| 텍스트 자간 줄이는 스타일 (0) | 2011.01.07 |
| 테이블 투명효과 (0) | 2011.01.07 |