Firefox Tomorrow

mathml element

<munder>

View on MDN ↗

The <munder> MathML element is used to attach an accent or a limit under an expression. It uses the following syntax: <munder> base underscript </munder>

Attributes

This element’s attributes include the global MathML attributes as well as the following attribute:

  • accentunder
    • : A <boolean> indicating whether the under script should be treated as an accent (i.e., drawn bigger and closer to the base expression).

Examples

<math display="block">
  <munder accentunder="true">
    <mrow>
      <mi>x</mi>
      <mo>+</mo>
      <mi>y</mi>
      <mo>+</mo>
      <mi>z</mi>
    </mrow>
    <mo>&#x23DF;<!--BOTTOM CURLY BRACKET--></mo>
  </munder>
</math>
Interactive exampleOpen the canonical MDN source to run this embedded demo.

Technical summary

Implicit ARIA role None

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also

  • mover (Overscript)
  • munderover (Underscript-overscript pair)