사용자의 움직임으로 인한 이벤트에 따른 것 뿐만 아니라 요소 안에서 이루어지는 상태에 따라 스타일을 지정할 수 있음
여기서 자주 사용되는 가상 클래스는 :enabled , :disabled , :checked 이러한 것들이 있음
여기서 자주 사용되는 가상 클래스는 :enabled , :disabled , :checked 이러한 것들이 있음
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 31 32 33 | < !DOCTYPE html> < html lang= "kr" > < head> < meta charset= "utf-8" > < title> 키보드와 하루 < /title> < style> 1 input:enabled { border : 1px solid blue ; } 2 input:disabled { border : 1px solid red ; } 3 input : checked + h3 { color : blue ; border : 1px solid red ; } < /style> < /head> < body> < div> < input type= "text" > < /div> < div> < input type= "text" disabled > < /div> < div> < input type= "radio" name= "ra_test" > < h3버튼1 < /h3> < /div> < div> < input type= "radio" name= "ra_test" > < h3버튼2 < /h3> < /div> < div> < input type= "radio" name= "ra_test" > < h3버튼3 < /h3> < /div> < /body> < /html> |
[css3] 가상 요소 - ::first-line , ::first-letter (0) | 2021.06.17 |
---|---|
[css3] 구조 가상 클래스 - :nth-child(n) , :nth-last-child(n) (0) | 2021.06.16 |
[css3] 가상 클래스 - :link , :visited , :hover , :active , :focus (0) | 2021.06.11 |
[css3] [속성 *=값] 선택자 - 특정 값이 일치하는 속성에 스타일 적용 (0) | 2021.06.10 |
[css3] [속성 $=값] 선택자 - 특정 값으로 끝나는 속성에 스타일 적용 (0) | 2021.06.09 |