CodeLab
Show Output
 
xxxxxxxxxx
25
 
1
<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
<meta charset="utf-8">
5
<title>Defining Font Size Using REM</title>
6
<style>  
7
    html {
8
        font-size: 62.5%;    /* font-size 1em = 10px */
9
    }
10
    body {
11
        font-size: 1.6rem;    /* 1.6rem = 16px */
12
    }
13
    p {
14
        font-size: 1.4rem;    /* 1.4rem = 14px */
15
    }
16
    p span {
17
        font-size: 2rem;    /* 2rem = 20px (not 28px) */
18
    }
19
</style>
20
</head>
21
<body>
22
    <h1>This is a heading</h1>
23
    <p>This is a <span>paragraph</span>.</p>
24
</body>
25
</html>                            
 

在微博、微信、公众号、小程序分享此示例。 如果您觉得有帮助,请给我们一个赞。