1 개요[ | ]
- FontAwesome Checkbox
- 폰트어썸 체크박스
- 폰트어썸 체크박스 아이콘 사용
html
Copy
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css"/>
<style>
input[type=checkbox] { display:none; }
input[type=checkbox] + label:before {
font-family: FontAwesome;
display: inline-block;
width: 20px;
content: "\f096";
}
input[type=checkbox]:checked + label:before { content: "\f046"; }
</style>
<input id="box1" type="checkbox" /><label for="box1"></label>
<br>
<input id="box2" type="checkbox" /><label for="box2">동의합니다.</label>
<br>
<input id="box3" type="checkbox" /><label for="box3">동의합니다.</label>
2 같이 보기[ | ]
3 참고[ | ]
편집자 Jmnote Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.