[HTML] placeholder 속성(워터마크)

HTML 2017. 1. 6. 11:32

placeholder 속성


짧은 힌트나 워터마크 정도로 생각하면 될 듯 사용자들의 데이터 입력의 도움을 주기 위한 방법으로 쓰임


input창에 글을 입력하면 placeholder 속성을 없어지기 때문에 label과 같은 용도로 쓰기에는 부적절합니다.


짧은 힌트를 사용시에는 활용적이나 긴 힌트를 사용할 때는 title 속성을 이용하시는게 훨씬 적절합니다.




1
2
3
4
5
6
7
<input type = 'text' class = 'form-control'  placeholder='품목분류'>
<input type = 'text' class = 'form-control'  placeholder='품목분류명'>
<input type = 'text' class = 'form-control'  placeholder='계정코드'>
<input type = 'text' class = 'form-control' placeholder='절단'>
<input type = 'text' class = 'form-control'  placeholder='절곡'>
<input type = 'text' class = 'form-control'  placeholder='가공'>
<input type = 'text' class = 'form-control' placeholder='제품'>
cs