mathbackground

已弃用: 不再推荐使用该特性。虽然一些浏览器仍然支持它,但也许已从相关的 web 标准中移除,也许正准备移除或出于兼容性而保留。请尽量不要使用该特性,并更新现有的代码;参见本页面底部的兼容性表格以指导你作出决定。请注意,该特性随时可能无法正常工作。

mathbackground 全局属性设置 MathML 元素的背景颜色

备注: 尽可能使用 CSS 来设置 MathML 的样式。mathbackground 属性应仅在不支持 CSS 并且将被 CSS background-color 属性值覆盖的应用程序中使用。

语法

html
<!-- 关键字值 -->
<math mathbackground="red">
<math mathbackground="indigo">

<!-- 十六进制值 -->
<math mathbackground="#bbff00"> <!-- 完全不透明 -->
<math mathbackground="#bf0"> <!-- 完全不透明的简写形式 -->
<math mathbackground="#11ffee00"> <!-- 完全透明 -->
<math mathbackground="#1fe0"> <!-- 完全透明的简写形式 -->
<math mathbackground="#11ffeeff"> <!-- 完全不透明 -->
<math mathbackground="#1fef"> <!-- 完全不透明的简写形式 -->

<!-- RGB 值 -->
<math mathbackground="rgb(255 255 128)"> <!-- 完全不透明 -->
<math mathbackground="rgb(117 190 218 / 50%)"> <!-- 50% 透明 -->

<!-- HSL 值 -->
<math mathbackground="hsl(50 33% 25%)"> <!-- 完全不透明 -->
<math mathbackground="hsl(50 33% 25% / 75%)"> <!-- 75% 不透明,即 25% 透明 -->

<color>

背景的统一颜色。

规范

Specification
MathML Core
# dfn-mathbackground
  • 在 MathML 3 和更早版本中,支持的值集更有限。自 MathML 核心版本以来,语法与 CSS <color> 值相匹配。
  • 此属性旨在用于不支持 CSS 的 MathML 应用程序。自 MathML 核心版本以来,推荐使用等效的 CSS。

浏览器兼容性

BCD tables only load in the browser

参见