<head>
<link rel="stylesheet type="text/css" herf="css/out.css">
</head>
<style>
/*해당 태그 전체에 스타일 적용*/
/*html 안에서 body 태그를 선택*/
body {
background: red;
color: blue;
}
/*해당 id에 스타일 적용*/
#name {
background color: pink;
}
/*해당 class에 스타일 적용*/
.user {
color: blue;
}
</style>
조적으로 접근해 조건값
⇒ 트리구조 (부모-자식-자손들)
⇒ DOM(Document Object Model)
자손 선택자: 특정 요소의 모든 자손 요소
⇒ 태그명 자손태그명
자식 선택자: 특정 요소의 직속 자식 요소
⇒ 태그명 > 자식태그명
형제 선택자
- 일반 형제 선택자: 특정 요소 이후의 모든 형제 요소
⇒ 태그 ~ 형제태그
- 인접 형제 선택자: 특정 요소 바로 다음에 있는 형제 요소
⇒ 태그 + 형제태그
<h3 style="color:white; font-family: 궁서">page1입니다.</h3>