-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path02-em-rem.html
More file actions
58 lines (51 loc) · 1.39 KB
/
Copy path02-em-rem.html
File metadata and controls
58 lines (51 loc) · 1.39 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Em & Rem Units</title>
<style>
/* #box-1 { font-size: 20px; }
#box-1 p {
padding: 1em;
font-size: 1.5em;
}
#box-1 ul { font-size: 1.2em; } */
html { font-size: 62.5%; }
#box-2 h3 { font-size: 2.3rem; }
#box-2 p {
font-size: 1.6rem;
line-height: 1.7rem;
}
</style>
</head>
<body>
<!-- <div id="box-1">
<h3>Box One</h3>
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Temporibus facere maiores id exercitationem cumque deserunt reprehenderit consequuntur molestiae aspernatur accusamus.</p>
<ul>
<li>1</li>
<li>2</li>
<li>3
<ul>
<li>1</li>
<li>2</li>
<li>3
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
</ul>
</li>
</ul>
</li>
<li>4</li>
</ul>
</div> -->
<div id="box-2">
<h3>Box Two</h3>
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Temporibus facere maiores id exercitationem cumque deserunt reprehenderit consequuntur molestiae aspernatur accusamus.</p>
</div>
</body>
</html>