本文概述
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>
立即测试
输出:
属性
特定于标签的属性:
<sup>标记不包含任何特定属性。
全局属性:
<sup>标记支持HTML中的Global属性。
事件属性:
<sup>标记支持HTML中的Event属性。
支持的浏览器
Element | Chrome | IE | Firefox | Opera | Safari |
<sup> | Yes | Yes | Yes | Yes | Yes |
评论前必须登录!
注册