<header> 태그의 color: red 속성을 상속받은 상태에서 <h1>과 <p> 태그에 다시 color 속성값을 적용하면 어떻게 될까요?
예제 소스 Exercise/5장/1_inheritance/style01.css
header {
color: red;
}
h1{
color: blue;
}
p{
color: blue;
}

그림 5-2 index01.html 실행 결과
TIP
style01.css 파일을 연동하는 index01.html 파일을 실행합니다.