선택자를 구체적으로 입력했는지 여부에 따른 우선순위
선택자를 구체적으로 작성할수록 CSS 속성의 우선순위가 높아집니다. 구체적인 예를 살펴보겠습니다.
예제 소스 Exercise/5장/2_cascade/index02.html
<body> <header> <h2>Nice to meet you</h2> </header> </body>
예제 소스 Exercise/5장/2_cascade/style02.css
/* 선택자를 구체적으로 작성할수록 우선순위가 높음 */ header h2 { color: blue; } h2 { color: red; }
그림 5-8 실행 결과