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


HTML <sup>用法及代碼示例


HTML <sup> 標簽被稱為上標標簽,用於定義上標文本。 <sup> 標簽內的文本以上基線顯示,並以比周圍文本更小的字體大小呈現。

<sup> 標簽對於定義數學公式和腳注很有用。

用法

<sup>......</sup>

以下是關於 HTML <sup> 標簽的一些規範

Display Inline
開始標簽/結束標簽 開始和結束標簽
Usage Textual

示例

<!DOCTYPE html>
<html>
<head>
	<title>HTML sup Tag</title>
	<style>
	   body{
		text-align:center;
		}
	</style>
</head>
<body>
 <h2>Example of sup tag</h2>
  Following is the famous Pythagorean Theorem:
  <p style="font-size:20px; color:green;"><var>a</var><sup>2</sup>+<var>b</var><sup>2</sup>=<var>c</var><sup>2</sup>
  </p>
  <p>Where a, b, and c represents the sides of right angle triangle</p>
</body>
</html>

輸出:

HTML sup tag

屬性:

Tag-specific 屬性:

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

全局屬性:

<sup> 標簽支持 HTML 中的全局屬性。

事件屬性:

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

支持瀏覽器

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




相關用法


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