-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.html
68 lines (57 loc) · 1.05 KB
/
values.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
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
59
60
61
62
63
64
65
66
67
68
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=, initial-scale=1.0">
<title>Values and units</title>
<style>
/* div{
background-color: red;
}
.unit-px
{
width: 400px;
margin: 10px;
}
.unit-percent
{
width: 50%;
} */
/* html{
font-size: 62.5%; 10px =1rem
}
.unit-rem
{
font-size: 3rem;
}
.em-parent
{
font-size: 4em;
}
.unit-em{
font-size: 4em;
} */
.view-width
{
background-color: red;
width: 50vw;
}
.view-height
{
background-color: green;
height: 100vh;
width: 10px;
}
</style>
</head>
<body>
<!-- <div class="unit-px">px </div>
<div class="unit-percent">%</div> -->
<!-- <div class="unit-rem">This is from rem</div>
<div class="em-parent">
<div class="unit-em">This is from em</div> -->
<div class="view-width">one</div>
<div class="view-height"> </div>
</div>
</body>
</html>