Firefox Tomorrow

mathml element

<munderover>

View on MDN ↗

The <munderover> MathML element is used to attach accents or limits both under and over an expression.

It uses the following syntax: <munderover> base underscript overscript </munderover>

Attributes

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

  • accent
    • : A <boolean> indicating whether the over script should be treated as an accent (i.e., drawn bigger and closer to the base expression).
  • 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">
  <munderover>
    <mo>∑</mo>
    <mrow>
      <mi>n</mi>
      <mo>=</mo>
      <mn>1</mn>
    </mrow>
    <mrow>
      <mo>+</mo>
      <mn>∞</mn>
    </mrow>
  </munderover>
</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

  • munder (Underscript)
  • mover (Overscript)