<html>
<head>
<style>
/* 默认的 CSS 值 */
strong {
font-weight: bold;
}
</style>
</head>
<body>
<p>默认情况下,strong 元素会这样显示:</p>
<strong>Some important text.</strong>
<p>自定义的 strong 元素(更改 font-weight):</p>
<strong style="font-weight:normal;">Some important text.</strong>
</body>
</html>