0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

subとsup

  • sub要素は下付き文字
  • sup要素は上付き文字

読み方は、

  • sup
    SuperScriptの略語で 「スーパースクリプト」 サップって呼んでしまいそう。
    3268636_s.jpg

  • sub
    SubScriptの略語で 「サブスクリプト」 サブ^^上下関係があるのか。
    24148402_s.jpg

主に数式や化学式また特定の言語に使用されるようです。なお、数式のマークアップに適したMathMLという言語がありますが、GoogleChromeなどほとんどのブラウザでは使用できないようです:sweat:

MDN 
https://developer.mozilla.org/ja/docs/Web/MathML

subを書いてみた

<body>
    <ul>
        <li><ruby>H<sub>2</sub>O<rt>おとなの階段昇る</rt></ruby></li>
    </ul>
</body>

image.png

supを書いてみた

<body>
    <ul>
        <li><ruby>x<sup>2</sup><rt>エックスニジョウ?ジジョウ?</rt></ruby></li>
    </ul>
</body>

image.png

おまけ

CSSでも指定できるんですよね~。

  • html
<body>
    <ul>
        <li><ruby>H<span class="example1">2</span>O<rt>エイチ・ツーオー</rt></ruby></u></li>
        <li><ruby>x<span class="example2">2</span><rt>エックスニジョウ?ジジョウ?</rt></ruby></li>
    </ul>
</body>

― CSS

@charset "Shift_JIS";

span.example1 {
    vertical-align: sub;
}

span.example2 {
    vertical-align: super;
}

image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?