【轉載請保留風信網文章內容的完整性,如果您不能遵守此原則,我們將保留追究法律責任的權利】
<sub> 和 <sup> 標籤
定義和用法
<sub> 標籤可定義下標文本。 <sup> 可定義上標文本。
HTML 4.01 與 HTML 5 之間的差異
沒有。
例子
這段文本包含 <sub>下標</sub>
這段文本包含 <sup>上標</sup>
屬性
標準屬性
class, contenteditable, coNtextmenu, dir, draggable, id, irrelevant, lang, ref, registrationmark, tabindex, template, titl e 如需完整的描述,請訪問 HTML 5 中標準屬性。
事件屬性
onabort, onbeforeunload, onblur, onchange, onclick, oncoNtextmenu, ondblclick, ondrag, ondragend, ondragenter, ondragHTTP://www.aliyun.com/zixun/aggregation/29841.html">leave, ondragover, ondragstart, ondrop, onerror, onfocus, onkeydown, onkeypress, onkeyup, onload, onmessage, onmousedown, onmousemove, onmouseover, onmouseout, onmouseup , onmousewheel, onresize, onscroll, onselect, onsubmit, onunload如需完整的描述,請訪問 HTML 5 中事件屬性。
TIY 實例
上標和下標
<html>
<body>
<p>
www.ithov.com This text contains <sub>subscript</sub>
</p>
<p>
www.ithov.com This text contains <sup>superscript</sup>
</p>
</body>
</html>
本例演示如何使用 sup 和 sub 元素。