HTML5中的MathML <mn>标记用于显示数字字符,该字符通常是带有可能的分隔符的数字序列。它包含任意字符,并且像4和4一样使用。
用法:
<mn> Numeric </mn>
属性:它接受以下列出的一些属性:
- class|id|style:此属性用于保存子元素的样式。
- dir:此属性保存方向值。方向值从左到右是可接受的ltr,从右到左是rtl。
- href:此属性用于保存指向指定URL的任何超链接。
- mathbackground:此属性保存数学表达式背景色的值。
- mathcolor:此属性保存数学表达式的颜色。
- mathsize:此属性保存内容大小的值。可能的值是小,中和大。
- mathvariant:此属性包含各种印刷术,例如font-family。
下面的示例说明了HTML 5中的MathML <mn>标签:
例:
<!DOCTYPE html>
<html>
<head>
<title>HTML5 MathML mn tag</title>
</head>
<body style="text-align:center;">
<h1 style="color:green">
GeeksforGeeks
</h1>
<h3>HTML5 MathML <mn> tag</h3>
<math>
<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>
</body>
</html>
输出:
支持的浏览器:下面列出了HTML5 MathML <mn>标记支持的浏览器:
- Firefox
注意:到目前为止,MathML元素均不支持其他浏览器。
相关用法
- HTML5 MathML <mo>标记用法及代码示例
- HTML5 MathML <mtr>标记用法及代码示例
- HTML5 MathML <mth>标记用法及代码示例
- HTML5 MathML <mtd>标记用法及代码示例
- HTML5 MathML <ms>标记用法及代码示例
- HTML5 MathML <mi>标记用法及代码示例
- HTML5 MathML <mglyph>标记用法及代码示例
- HTML5 MathML <mmultiscripts>标记用法及代码示例
- HTML5 MathML <merror>标记用法及代码示例
- HTML5 MathML <mover>标记用法及代码示例
- HTML5 MathML <msqrt>标记用法及代码示例
- HTML5 MathML <mfrac>标记用法及代码示例
- HTML5 MathML <msubsup>标记用法及代码示例
- HTML5 MathML <math>标记用法及代码示例
- HTML5 MathML <mroot>标记用法及代码示例
注:本文由纯净天空筛选整理自skyridetim大神的英文原创作品 HTML5 | MathML <mn> Tag。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。