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>
輸出:
屬性:
Tag-specific 屬性:
<strong> 標簽不包含任何特定屬性。
全局屬性:
<strong> 標簽支持 HTML 中的 Global 屬性。
事件屬性:
<strong> 標簽支持 HTML 中的 Event 屬性。
支持瀏覽器
Element | Chrome | IE | Firefox | Opera | Safari |
<strong> | Yes | Yes | Yes | Yes | Yes |
相關用法
- HTML <strike>用法及代碼示例
- HTML <style> type屬性用法及代碼示例
- HTML <style> media屬性用法及代碼示例
- HTML <span>用法及代碼示例
- HTML <spacer>用法及代碼示例
- HTML <select> size屬性用法及代碼示例
- HTML <s>用法及代碼示例
- HTML <script> charset屬性用法及代碼示例
- HTML <script> async屬性用法及代碼示例
- HTML <source> type屬性用法及代碼示例
- HTML <select> autofocus屬性用法及代碼示例
- HTML <section>用法及代碼示例
- HTML <sub>用法及代碼示例
- HTML <small>用法及代碼示例
- HTML <select> multiple屬性用法及代碼示例
- HTML <script> defer屬性用法及代碼示例
- HTML <select> autocomplete屬性用法及代碼示例
- HTML <samp>用法及代碼示例
- HTML <script> type屬性用法及代碼示例
- HTML <source> srcset屬性用法及代碼示例
注:本文由純淨天空篩選整理自 HTML <strong> tag。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。