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


HTML5 MathML <mphantom>標記用法及代碼示例


HTML5中的MathML <mphantom>標記用於不可見地呈現,但尺寸仍然保留。

用法:

<mphantom> Child elements </mphantom>

屬性:此標記接受以下列出的一些屬性:


  • class|id|style:此屬性用於保存子元素的樣式。
  • mathbackground:此屬性保存數學表達式背景色的值。

下麵的示例將說明HTML 5 MathML <mphantom>標記的概念:

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>HTML5 mphantom tag</title> 
</head> 
  
<body style="text-align:center;"> 
      
    <h1 style="color:green">GeeksforGeeks</h1> 
      
    <h3>HTML5 MathML <mphantom> tag</h3> 
      
    <math> 
        <maction actiontype="toggle"> 
            <mfrac> 
                <mn>25</mn> 
                <mn>10</mn> 
            </mfrac> 
            <mfrac> 
                <mrow> 
                    <mphantom> 
                        <mn>5</mn> 
                        <mo>⋅</mo> 
                        <mn>5</mn> 
                    </mphantom> 
                </mrow> 
                <mrow> 
                    <mphantom> 
                        <mn>2</mn> 
                        <mo>⋅</mo> 
                        <mn>5</mn> 
                    </mphantom> 
                </mrow> 
            </mfrac> 
            <mfrac> 
                <mn>2</mn> 
                <mn>5</mn> 
            </mfrac> 
        </maction> 
    </math> 
      
    <p> 
        By clicking the number you can 
        see 5*5 and 2*5 is invisible 
    </p> 
</body> 
  
</html>

輸出:

支持的瀏覽器:下麵列出了HTML5 MathML <mphantom>標記支持的瀏覽器:

  • Firefox


相關用法


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