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

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

<h6>This is heading 6</h6>

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

<h6 style="font-weight:normal;">This is heading 6</h6>

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