:root 선택자 : body태그 보다 위의 최상위 선택자



html)

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
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" 
          content="width=device-width, height=device-height, 
                     minimum-scale=1.0, maximum-scale=1.0, initial-scale=1.0">
    <title>Insert title here</title>
    
    <style>
    :root {
        font-size: 12px;
    }
    p {
        font-size: 1.1em;    <!-- 12*1.1 = 13.2px -->
    }
    span {
        font-size: 2rem;    <!-- 12*2 = 24px -->
    }
    </style>
</head>
 
<body>
    <p>가나다라마바사아자차카타파하
        <span>가나다라마바사아자차카타파하</span>
    </p>
</body>
</html>
cs



결론

최상위 선택자의 font-size가 12px 이므로 12px를 기준으로 p, span태그의 font-size가 결정된다




+ Recent posts