Recent Posts
Recent Comments
«   2025/04   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30
Archives
Today
Total
관리 메뉴

엔디프의 웹표준 커버스토리

라디오버튼 디자인방법 본문

CSS연구소

라디오버튼 디자인방법

박세환 2015. 1. 27. 16:07
html5에서 라디오 버튼 디자인 하는 방법
input[type="radio"] {display:none}
/* 디폴트 상태 */
input[type="radio"] + label {display:inline-block; background:url(../../) }
/* 온상태일때 */
input[type="radio"]:checked + label


onclick="window.open('')"


Comments