當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML5 MathML dir屬性用法及代碼示例


此屬性保存方向值。它具有兩種類型的方向值,分別是從左到右的rtr和從右到左的rtl。 <math>,<mi>,<mo>,<mrow>,<ms>和<mtext>接受此屬性。

用法:

<element dir="ltr|rtl">

屬性值:

  • ltr:該值保持從左到右的方向。
  • rtl:該值保持從右到左的方向。

下麵的示例說明HTML5 MathML中的dir屬性:

例:



HTML

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>HTML5 MathML dir attribute</title>  
</head>  
  
<body>  
    <center>  
        <h1 style="color:green">  
            GeeksforGeeks  
        </h1>  
          
        <h3>HTML5 MathML dir attribute</h3>  
          
        <math dir="rtl">  
            <mrow>  
                <mrow>  
                    <msup>  
                        <mi>x</mi>  
                        <mn>2</mn>  
                    </msup>  
                    <mo>+</mo>  
                    <msup>  
                        <mi>y</mi>  
                        <mn>2</mn>  
                    </msup>  
                </mrow>  
                <mo>=</mo>  
                <msup>  
                    <mi>z</mi>  
                    <mn>2</mn>  
                </msup>  
            </mrow>  
        </math>  
    </center>  
</body>  
  
</html> 

輸出:

支持的瀏覽器:下麵列出了HTML5 MathML dir屬性支持的瀏覽器:

  • Firefox




相關用法


注:本文由純淨天空篩選整理自skyridetim大神的英文原創作品 HTML5 MathML dir Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。