Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mohamedkhallouq
GitHub Repository: mohamedkhallouq/content
Path: blob/main/files/en-us/web/mathml/global_attributes/mathbackground/index.md
6546 views
---
title: mathbackground slug: Web/MathML/Global_attributes/mathbackground browser-compat: mathml.global_attributes.mathbackground
---

{{QuickLinksWithSubPages("/en-us/docs/Web/MathML/Global_attributes")}}{{Deprecated_Header}}

The mathbackground global attribute sets the background-color of a MathML element.

Note: Use CSS for styling MathML whenever possible. The mathbackground attribute should only be included for applications that are not CSS-aware and will be overridden by the CSS background-color property value, if set.

Syntax

<!-- Keyword values --> <math mathbackground="red"> <math mathbackground="indigo"> <!-- Hexadecimal value --> <math mathbackground="#bbff00"> <!-- Fully opaque --> <math mathbackground="#bf0"> <!-- Fully opaque shorthand --> <math mathbackground="#11ffee00"> <!-- Fully transparent --> <math mathbackground="#1fe0"> <!-- Fully transparent shorthand --> <math mathbackground="#11ffeeff"> <!-- Fully opaque --> <math mathbackground="#1fef"> <!-- Fully opaque shorthand --> <!-- RGB value --> <math mathbackground="rgb(255, 255, 128)"> <!-- Fully opaque --> <math mathbackground="rgba(117, 190, 218, 0.5)"> <!-- 50% transparent --> <!-- HSL value --> <math mathbackground="hsl(50 33% 25%)"> <!-- Fully opaque --> <math mathbackground="hsl(50 33% 25% / 0.75)"> <!-- 75% opaque, i.e. 25% transparent -->

Values

  • {{cssxref("<color>")}}

    • : The uniform color of the background.

Specifications

{{Specifications}}

  • In MathML 3 and earlier versions, a more limited set of values was supported. Since MathML Core, the syntax matches CSS {{cssxref("<color>")}} values.

  • This attribute was designed for MathML applications that are not CSS-aware. Since MathML Core, the use of equivalent CSS is recommended instead.

Browser compatibility

{{Compat}}

See also