当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML5 MathML supscriptshift属性用法及代码示例


此属性定义了将下标移动到表达式基线以下的最小空间。 <mmultiscripts>,<msub>和<msubsup>标记接受此属性。

用法:

<element supscriptshift length="length">

属性值:

  • length:此属性以特定单位保持数字,这将使下移量移至基线以下。

以下示例说明了HTML5 MathML中的下标转换:

例:



<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML5 MathML supscriptshift Attribute 
    </title> 
</head> 
  
<body> 
    <center> 
        <h1 style="color:green"> 
            GeeksforGeeks 
        </h1> 
  
        <h3> 
            HTML5 MathML supscriptshift Attribute 
        </h3> 
  
        <math> 
            <mfenced> 
                <mrow> 
                    <msub supscriptshift="5px"> 
                        <mi>x</mi> 
                        <mn>2</mn> 
                    </msub> 
                    <mo>+</mo> 
                    <msub supscriptshift="5px"> 
                        <mi>y</mi> 
                        <mn>2</mn> 
                    </msub> 
                    <mo>=</mo> 
                    <msub supscriptshift="5px"> 
                        <mi>z</mi> 
                        <mn>2</mn> 
                    </msub> 
                </mrow> 
            </mfenced> 
        </math> 
    </center> 
</body> 
  
</html>     

输出:

支持的浏览器:supscriptshift属性支持的浏览器如下:

  • Firefox




相关用法


注:本文由纯净天空筛选整理自skyridetim大神的英文原创作品 HTML5 MathML supscriptshift Attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。