HTML5中的MathML <munderover>标记用于在表达式下加上表达式上附加任何重音符号或限制。
用法:
<munderover> base underscript </munderover>
属性:此标记接受以下列出的一些属性:
- accent:此属性指定是否应将运算符视为重音符号。可能的值为true或false。
- accentunder:此属性定义标签是否包含重音。可能的值是true,表示元素是靠近基本表达式的重音符号,是false表示元素是靠近基本表达式的重音符号。
- align:此属性保存下标的对齐方式值。可能的值为
left
,right
和center
。 - class|id|style:此属性用于保存子元素的样式。
- href:此属性用于保存指向指定URL的任何超链接。
- mathbackground:此属性保存数学表达式背景色的值。
- mathcolor:此属性保存数学表达式的颜色。
以下示例说明了HTML5 <munderover>标签的概念:
例:
<!DOCTYPE html>
<html>
<head>
<title>HTML5 MathML munderover tag</title>
<style>
.munderover {
font-size:40px;
}
</style>
</head>
<body>
<center>
<h1 style="color:green">GeeksforGeeks</h1>
<h3>HTML5 MathML <munderover> Tag</h3>
<math>
<munderover class="munderover">
<mo> ∫ </mo>
<mn> 0 </mn>
<mi> ∞</mi>
</munderover>
<mrow>
<mi>GeeksforGeeks</mi>
<mo>=</mo>
<mi>
A Online Computer Sceince
Portal for Geeks
</mi>
</mrow>
</math>
</center>
</body>
</html>
输出:
支持的浏览器:下面列出了HTML5 MathML <munderover>标记支持的浏览器:
- 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 <munderover> Tag。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。