MathML <style>标记是HTML5中的内置标记。此标记用于更改子元素的样式。该标签适用于HTML5 MathML库中包含的标签。
用法:
<mstyle attribute="value"> children tags </style>
属性:此标记接受一些属性,如下所述:
- decimalpoint:如果对齐值以小数点表示,则此属性保存对齐值。
- dir:此属性保存方向值。两种类型的方向值是可接受的ltr(从左到右)和rtl(从右到左)。
- displaystyle:此属性保留用于显示方程式的更多垂直空间,或者为n布尔值。如果将其设置为true,则将显示较大版本的运算符。它部分取决于<mo>标记的bigop和movinglimits。
- scriptlevel:此属性将值保留为font-size上的ctrols。它的工作方式类似于优先权偏好,这意味着优先权值越高,性能越低。这意味着脚本级别越高,font-size越小。
- scriptminsize:此属性保存因脚本级别的更改而用于调整字体大小的乘数值。其默认值为0.71。
以下示例说明了HTML5 MathMl <mstyle>标签:
例:
<!DOCTYPE html>
<html>
<head>
<title>HTML5 MathML <mstyle> tag</title>
</head>
<body>
<center>
<h1 style="color:green">
GeeksforGeeks
</h1>
<h3>HTML5 MathML <mstyle> tag</h3>
<math>
<mstyle displaystyle="true"
mathcolor="lightgreen">
<mrow>
<msubsup>
<mo>∑</mo>
<mn> i=1 </mn>
<mn> n </mn>
</msubsup>
<mo>+</mo>
<msub>
<mi>x</mi>
<mn>i</mn>
</msub>
<mo>=</mo>
<mn>?</mn>
</mrow>
</mstyle>
</math>
</center>
</body>
</html>
输出:
支持的浏览器:下面列出了HTML5 MathML <mstyle>标记支持的浏览器:
- 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 <style> Tag。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。