sub, sup

<sub> 要素は下付き文字、<sup> 要素は上付き文字を表します。これらの要素は、使用しなければ文書の意味が変わってしまうような場合に使用します。

カテゴリー
フロー・コンテンツ、パルパブル・コンテンツ、フレージング・コンテンツ
配置場所
フレージング・コンテンツが置ける場所。
内容
フレージング・コンテンツ
属性
グローバル属性

accesskey, autocapitalize, autofocus, class, contenteditable, data-*, dir, draggable, enterkeyhint, hidden, id, inputmode, is, itemid, itemprop, itemref, itemscope, itemtype, lang, nonce, spellcheck, style, tabindex, title, translate

サンプル

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8" />
<title>HTML5 › sub, sup</title>
</head>
<body>
<h1>HTML5 › sub, sup</h1>
<p>
土地面積は32坪(約105.8m<sup>2</sup>)です。
</p>
</body>
</html>