本文概述
HTML <strong>标记是一个短语标记, 用于表示浏览器上文档的重要文本。 <strong>文本中的文本对搜索引擎具有语义重要性, 并以特殊的语调来强调文本。
默认情况下, <strong>标记内的文本在浏览器中以粗体显示;但是可以使用CSS进行更改。
注意:不要仅使用<strong>标记使文本变为粗体, 并且如果要使文本没有任何语义上的重要性而变为粗体, 请使用<b>或CSS属性。
句法
<strong>Write your important content....</strong>
以下是有关HTML <strong>标签的一些规范
Display | Inline |
开始日期/结束日期 | 开始和结束标签 |
Usage | Formatting |
例
<!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中的事件属性。
支持的浏览器
Element | Chrome | IE | Firefox | Opera | Safari |
<strong> | Yes | Yes | Yes | Yes | Yes |