xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>用em设置字体大小示例</title>
<style>
body {
font-size: 62.5%;
}
h1 {
font-size: 3em;
}
p {
font-size: 1.6em;
}
</style>
</head>
<body>
<h1>这是一个标题</h1>
<p>这是一个段落.</p>
<div>This is normal text with browser default font size.</div>
</body>
</html>