Global attributes are attributes common to all MathML elements; they can be used on all elements, though they may have no effect on some elements.
Global attributes may be specified on all MathML elements, even those not specified in the standard. That means that any non-standard elements must still permit these attributes, even though using those elements means that the document is no longer MathML-compliant.
In addition to the basic MathML global attributes, the following global attributes also exist:
onclick, onfocus, etc.href attribute for making MathML element a hyperlink.autofocusA boolean attribute that indicates that the element should be focused on page load.
classA space-separated list of the classes of the element. Classes allow CSS and JavaScript to select and access specific elements via the class selectors or functions like the method Document.getElementsByClassName().
data-*Forms a class of attributes, called custom data attributes, that allow proprietary information to be exchanged between the MathML and its DOM representation that may be used by scripts. All such custom data are available via the MathMLElement interface of the element the attribute is set on. The MathMLElement.dataset property gives access to them.
dirAn enumerated attribute indicating the directionality of the MathML element. It can have the following values:
ltr, which means left to right and is used to render mathematical expressions from the left to the right (e.g., English or Moroccan style);rtl, which means right to left and is used to render mathematical expressions from the right to the left (e.g., Maghreb or Machrek style);displaystyle:A boolean setting the math-style for the element.
true, which means normal.false, which means compact.idDefines a unique identifier (ID) which must be unique in the whole document. Its purpose is to identify the element when linking (using a fragment identifier), scripting, or styling (with CSS).
mathbackgroundA background-color for the element.
mathcolorA color for the element.
mathsizeA <length-percentage> used as a font-size for the element.
nonceA cryptographic nonce ("number used once") which can be used by Content Security Policy to determine whether a given fetch will be allowed to proceed.
scriptlevelSpecifies a math-depth for the element. See the scriptlevel page for accepted values and mapping.
styleContains CSS styling declarations to be applied to the element. Note that it is recommended for styles to be defined in a separate file or files. This attribute and the <style> element have mainly the purpose of allowing for quick styling, for example for testing purposes.
tabindexAn integer attribute indicating if the element can take input focus (is focusable), if it should participate to sequential keyboard navigation, and if so, at what position. It can take several values:
0 means that the element should be focusable and reachable via sequential keyboard navigation, but its relative order is defined by the platform convention;tabindex. If several elements share the same tabindex, their relative order follows their relative positions in the document.Element interface that allows querying most global attributes.