예제 소스 Exercise/5장/1_inheritance/style02.css
header { color: red; } h1 { color: blue; } p { color: blue; }
그림 5-4 index02.html 실행 결과
결과를 보면 이미 <header> 태그의 <h1>과 <p> 태그에 적용된 CSS 속성으로 인해 <footer> 태그 안에 있는 <h1>과 <p> 태그의 글자 색까지 모두 파란색으로 출력됩니다.
예제 소스 Exercise/5장/1_inheritance/style02.css
header { color: red; } h1 { color: blue; } p { color: blue; }
그림 5-4 index02.html 실행 결과
결과를 보면 이미 <header> 태그의 <h1>과 <p> 태그에 적용된 CSS 속성으로 인해 <footer> 태그 안에 있는 <h1>과 <p> 태그의 글자 색까지 모두 파란색으로 출력됩니다.