當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML <strong>用法及代碼示例


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>

輸出:

HTML strong tag

屬性:

Tag-specific 屬性:

<strong> 標簽不包含任何特定屬性。

全局屬性:

<strong> 標簽支持 HTML 中的 Global 屬性。

事件屬性:

<strong> 標簽支持 HTML 中的 Event 屬性。

支持瀏覽器

Elementchrome browser Chromeie browser IEfirefox browser Firefoxopera browser Operasafari browser Safari
<strong>YesYesYesYesYes




相關用法


注:本文由純淨天空篩選整理自 HTML <strong> tag。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。