HTML5 MathML <menclose>標記是HTML5中的內置元素。它用於呈現由notation屬性指定的附加符號內部的內容。
用法:
<menclose attribute="value "> child elements </menclose">
屬性:標簽接受以下列出的一些屬性:
- class| id| style:此屬性用於保存子元素的樣式。
- href:此屬性用於保存指向指定URL的任何超鏈接。
- mathbackground:此屬性保存數學表達式背景色的值。
- mathcolor:此屬性保存數學表達式的顏色。
- notation:該屬性保存每個符號都好像沒有其他符號一樣繪製的符號,一次使用多個符號可能會發生符號重疊。可能的值是精算,底,框,圓,downdiagonalstrike,左,longdiv,madruwb,相角,基本,右,圓角框,top,updiagonalarrow,updiagonalstrike和Verticalstrike。
下麵的示例將說明HTML5 MathML <menclose>標記的概念:
例:
<!DOCTYPE html>
<html>
<head>
<title>HTML5 MathML menclose tag</title>
</head>
<body style="text-align:center;">
<h1 style="color:green">GeeksforGeeks</h1>
<h3>HTML5 MathML <menclose> tag</h3>
<math>
<math>
<menclose notation="radical "
mathbackground="yellow"
mathcolor="purple">
<mrow>
<mi> x </mi>
<mo> + </mo>
<mi> y </mi>
</mrow>
</menclose>
<mi>=</mi>
<menclose notation="radical"
mathbackground="yellow"
mathcolor="purple">
<mi>z</mi>
</menclose>
</math>
</math>
</body>
</html>
輸出:
支持的瀏覽器:下麵列出了HTML5 MathML <menclose>標記支持的瀏覽器:
- Firefox
相關用法
- HTML5 MathML <mo>標記用法及代碼示例
- HTML5 MathML <mtr>標記用法及代碼示例
- HTML5 MathML <mth>標記用法及代碼示例
- HTML5 MathML <mtd>標記用法及代碼示例
- HTML5 MathML <ms>標記用法及代碼示例
- HTML5 MathML <mi>標記用法及代碼示例
- HTML5 MathML <mn>標記用法及代碼示例
- HTML5 MathML <mglyph>標記用法及代碼示例
- HTML5 MathML <mmultiscripts>標記用法及代碼示例
- HTML5 MathML <merror>標記用法及代碼示例
- HTML5 MathML <mover>標記用法及代碼示例
- HTML5 MathML <msqrt>標記用法及代碼示例
- HTML5 MathML <mfrac>標記用法及代碼示例
- HTML5 MathML <msubsup>標記用法及代碼示例
- HTML5 MathML <math>標記用法及代碼示例
注:本文由純淨天空篩選整理自skyridetim大神的英文原創作品 HTML5 | MathML <menclose> Tag。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。