CSS - math-shift

概要

属性名math-shift
normal | compact
初期値normal
適用可能要素すべての要素
継承継承する
サポートhttps://caniuse.com/mdn-css_properties_math-shift

説明

MathML において累乗などの上付文字の大きさを制御します。

normal
通常通り表示します。
compact
コンパクトに表示します。

使用例

math-shift: compact を指定した方が若干コンパクトに表示されます。

HTML
<math style="font-size:64px;">
  <msup style="math-shift:normal;">
    <mi>x</mi>
    <mn>2</mi>
  </msup>
  <msup style="math-shift:compact;">
    <mi>x</mi>
    <mn>2</mi>
  </msup>
</math>
表示
x 2 x 2

リンク