WEB/html,CSS

[html][css] 자손 및 후손 선택자 / css자손, 후손 선택하는 법

자바칩 프라푸치노 2021. 4. 4. 17:48

자손과 후손을 알아보자

부를 기준으로 봤을 때 자손은 바로 밑의 자손 아들이고

후손은 아들과 손주까지 다 합친 것이 후손이다.

 

 

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
34
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        div li{
            background-color: aquamarine;
        }
        div> h1{
            color: bisque;
        }
    </style>
</head>
<body>
    <div id="header">
        <div class="logo">
            <h1>LOGO</h1>
        </div>
        <div class="copy">
            <h2>global company</h2>
        </div>
    </div>
 
    <div id="wrap">
        <p>자바칩 프라푸치노</p>
        <ul>
            <li>반갑다</li>
        </ul>
    </div>
</body>
</html>
cs

자손을 선택하는 법 : >

div > h1

div 태그 바로 밑의 h1에 css를 적용한다

 

후손을 선택하는 법: 스페이스바

div li 

div아래의 모든 li에 css를 적용한다

728x90