blob: b6eb3c0af09a04cda940400b76d5e35b7e5fdd3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<head><style>
* {
font-family: SerenitySans;
}
:root {
font-size: 20px;
line-height: 2;
}
#a {
background-color: red;
width: 100px;
height: 100px;
}
#b {
background-color: green;
line-height: 50px;
width: 2lh;
height: 2.5rlh;
}
</style>
<body><div id="a"><div id="b">
|