x
 
<!DOCTYPE html>
<html>
<head>
<style>
body {
 font-size:16px;
}
div {
  font-size: 150%;
  border: 1px solid black;
}
</style>
</head>
<body>
<p>此文档的 font-size 为 16px。</p>
<div>这个 div 元素的 font-size 是 150%。</div>
<p>% 单位设置相对于当前 font-size 的字体尺寸。</p>
</body>
</html>