代码示例:(标识:cssref_unit_ch)
<!DOCTYPE html>
<html>
<head>
<style>
body {
  font-size:16px;
}

div {
  font-size: 3ch;
  border: 1px solid black;
}
</style>
</head>
<body>

<p>此文档的 font-size 是 16px。</p>

<div>这个 div 元素的 font-size 是 3ch。</div>

<p>ch 单位设置相对于字符 "0" 宽度的 font-size。</p>

</body>
</html>
运行结果: