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


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


HTML5中的MathML <mfenched>標記用於添加自定義的打開和關閉括號。就像您可以打開任何括號並可以關閉不同的括號和分隔符一樣。

用法:

<mfenced open="parentheses" close="parentheses" separators=" ">
    child elements
</mfenced>

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


  • class|id|style:此屬性用於保存子元素的樣式。
  • href:此屬性用於保存指向指定URL的任何超鏈接。
  • mathbackground:此屬性保存數學表達式背景色的值。
  • mathcolor:此屬性保存數學表達式的顏色。
  • open:此屬性包含左括號。
  • separator:This attribute holds the separator for each string or anything you want to separate from anthing.
  • close:此屬性包含右括號。

以下示例說明了HTML5中的MathML <mfenched>標記:

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>HTML5 MathML mfenched tag</title> 
</head> 
  
<body> 
    <center> 
        <h1 style="color:green"> 
            GeeksforGeeks 
        </h1> 
          
        <h3>HTML5 MathML <mfenched> tag</h3> 
          
        <math> 
            <mfenced open="(" close=")" separators=""> 
                <mrow> 
                    <msup> 
                        <mi>x</mi> 
                        <mn>2</mn> 
                    </msup> 
                    <mo>+</mo> 
                    <msup> 
                        <mi>y</mi> 
                        <mn>2</mn> 
                    </msup> 
                    <mo>=</mo> 
                    <msup> 
                        <mi>z</mi> 
                        <mn>2</mn> 
                    </msup> 
                </mrow> 
            </mfenched> 
        </math> 
    </center> 
</body> 
  
</html>

輸出:

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

  • Firefox


相關用法


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