HTML <strong> 标签是一个短语标签,用于在浏览器上表示文档的重要文本。<strong> 文本中的文本对搜索引擎具有语义重要性,并以特殊语调强调文本。
<strong> 标签内的文本默认在浏览器上以粗体呈现;但是它可以使用 CSS 进行更改。
<strong>写下你的重要内容.... </strong>
以下是关于 HTML <strong> 标签的一些规范
| 展示 | 排队 |
| 开始标签/结束标签 | 开始和结束标签 |
| 用法 | 格式化 |
<!DOCTYPE html>
<html>
<head>
<title>Strong tag</title>
<style>
h1,h2{
text-align: center;
}
h2{
color: green;
}
</style>
</head>
<body>
<h1>Example of strong tag</h1>
<h2>Weather forecasting</h2>
<p>The weather is not good today.
<strong>It may heavy rain today, so it will better to be in your home.</strong>
</p>
</body>
</html>输出:

<strong> 标签不包含任何特定属性。
<strong> 标签支持 HTML 中的 Global 属性。
<strong> 标签支持 HTML 中的 Event 属性。
| 元素 | Chrome | IE | Firefox | Safari | Opera |
|---|---|---|---|---|---|
| <strong> | Yes | Yes | Yes | Yes | Yes |