css 기본 개념
a few seconds read (About 59 words)
선택자
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
| // 아이디 선택자 #id_of_the_element{ //contents }
//클래스 선택자 .class_of_the_element{ //contents }
// 속성 선택자 input[type=text]{ // contents }
// 자손 선택자 header>h1{ }
// 반응, 상태, 구조 선택자 div:first-child{ }
선택자:active{ }
|
Comments