当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML5 MathML open属性用法及代码示例


此属性保留与close属性相同的任何方程式的右括号。 <mfenched>标记接受此属性。

用法:

<element open="parentheses">

属性值:

  • Parentheses:包含将用于打开任何方程式的括号。

下面的示例说明HTML5 MathML中的open属性:



HTML

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>HTML5 MathML open attribute</title> 
</head> 
  
<body> 
    <center> 
        <h1 style="color:green"> 
            GeeksforGeeks 
        </h1> 
  
        <h3>HTML5 MathML open attribute</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> 
                </mfenced> 
        </math> 
    </center> 
</body> 
  
</html>

输出:

支持的浏览器:下面列出了HTML5 MathML open属性支持的浏览器:

  • Firefox




相关用法


注:本文由纯净天空筛选整理自skyridetim大神的英文原创作品 HTML5 MathML open Attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。