x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<style>
6
body {
7
font-size: 100%;
8
}
9
10
h1 {
11
font-size: 2.5em;
12
}
13
14
h2 {
15
font-size: 1.875em;
16
}
17
18
p {
19
font-size: 0.875em;
20
}
21
</style>
22
</head>
23
<body>
24
25
<h1>This is heading 1</h1>
26
<h2>This is heading 2</h2>
27
<p>This is a paragraph.</p>
28
<p>在所有浏览器中,可以显示相同的文本大小,并允许所有浏览器缩放文本的大小。</p>
29
30
</body>
31
</html>