代码示例:(标识:cssref_default_b)
<!DOCTYPE html>
<html>
<head>
<style>
/* 默认的 CSS 值 */
b {
  font-weight: bold;
}
</style>
</head>
<body>

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

<p><b>This is bold text.</b></p>

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

<p><b style="font-weight:normal;">Some normal text.</b></p>

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