代码示例:(标识:cssref_default_h5)
<!DOCTYPE html>
<html>
<head>
<style>
/* 默认的 CSS 值 */
h5 {
  display: block;
  font-size: .83em;
  margin-top: 1.67em;
  margin-bottom: 1.67em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}
</style>
</head>
<body>

<p>默认情况下,h5 元素会这样显示:</p>

<h5>This is heading 5</h5>

<p>自定义的 h5 元素(更改 font-weight):</p>

<h5 style="font-weight:normal;">This is heading 5</h5>

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