landing page
MathML global attributes
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:
- The event handler attributes such as
onclick,onfocus, etc. - The
hrefattribute for making MathML element a hyperlink.
List of global attributes
autofocus- : A boolean attribute that indicates that the element should be focused on page load.
class- : A 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
getElementsByClassName().
- : A 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
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
MathMLElementinterface of the element the attribute is set on. Thedatasetproperty gives access to them.
- : 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
dir- : An 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);
- : An enumerated attribute indicating the directionality of the MathML element. It can have the following values:
displaystyle:- : A boolean setting the math-style for the element.
true, which meansnormal.false, which meanscompact.
- : A boolean setting the math-style for the element.
id- : Defines 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).
mathbackground- : A background-color for the element.
mathcolor- : A color for the element.
mathsize- : A
length-percentageused as a font-size for the element.
- : A
nonce- : A cryptographic nonce (“number used once”) which can be used by Content Security Policy to determine whether a given fetch will be allowed to proceed.
scriptlevel- : Specifies a math-depth for the element. See the scriptlevel page for accepted values and mapping.
styletabindex- : An 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:
- a negative value means that the element should be focusable, but should not be reachable via sequential keyboard navigation;
0means that the element should be focusable and reachable via sequential keyboard navigation, but its relative order is defined by the platform convention;- a positive value means that the element should be focusable and reachable via sequential keyboard navigation; the order in which the elements are focused is the increasing value of the
tabindex. If several elements share the same tabindex, their relative order follows their relative positions in the document.
- : An 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:
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.
See also
Elementinterface that allows querying most global attributes.