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


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


HTML5中的MathML mathvariant属性用于指定用于显示文本的逻辑类。这可以用来改变所显示文本的版式。此属性支持的所有可能值是正常,粗体,斜体,bold-italic,double-struck,bold-fraktur,脚本,bold-script,fraktur,sans-serif,bold-sans-serif,sans-serif-italic,sans-serif-bold斜体,等宽,初始,加尾,循环和拉伸。此属性被<mi>,<mn>,<mo>,<ms>和<mtext>标记接受。

用法:

<element mathvariant="logical class">

属性值:该属性具有上述和以下描述的单个值:

  • logical class:此值将元素的逻辑类设置为可用值之一。

以下示例说明了MathML mathvariant属性:

范例1:



HTML

<!DOCTYPE html> 
<html> 
  
<body style="text-align:center;"> 
    <h1 style="color:green"> 
        GeeksforGeeks 
    </h1> 
  
    <h3>HTML5 MathML mathvariant Attribute</h3> 
      
    <math> 
        <ms lquote="„" rquote=" “" 
            mathcolor="Red" 
            mathvariant="sans-serif"> 
            A Computer Science Portal for Geeks 
        </ms> 
    </math> 
</body> 
  
</html>

输出:

范例2:

HTML

<!DOCTYPE html> 
<html> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green"> 
        GeeksforGeeks 
    </h1> 
      
    <h3>HTML5 MathML mathvariant Attribute</h3> 
      
    <math> 
        <ms lquote="„" rquote=" “" 
            mathcolor="Red" mathvariant="fraktur"> 
            A Computer Science Portal for Geeks 
        </ms> 
    </math> 
</body> 
  
</html>

输出:

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

  • Firefox




相关用法


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