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


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


HTML5中的MathML mathcolor属性用于指定要在数学表达式中使用的前景色。可以以RGB或任何字符串颜色名称的任何形式定义颜色。所有MathML标记都接受此属性。

用法:

<element mathcolor="colorname">

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

  • colorname:该值定义了MathML标签使用的颜色。

下面的示例说明了MathML mathcolor属性:

例:



HTML

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

输出:

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

  • Firefox

相关用法


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