-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrem-unit.html
More file actions
40 lines (36 loc) · 833 Bytes
/
rem-unit.html
File metadata and controls
40 lines (36 loc) · 833 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>
html{
font-size: 20px;
}
/* h1{
font-size: 3rem;
}
p{
font-size: 1.5rem;
} */
div{
height: 10rem;
width: 20rem;
background: #000;
}
@media (max-width: 600px) {
html {
font-size: 10px; /* Now all rems adjust! */
}
}
</style>
<body>
<!--
<h1>Lorem ipsum dolor sit amet.</h1>
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Hic, odio eos! Provident enim, impedit repudiandae odio laboriosam ut velit debitis pariatur sunt odit aspernatur? Soluta nobis voluptatem quisquam esse dolorem.</p>
-->
<div class=""></div>
</body>
</html>