Open In App

HTML5 | MathML <munderover> Tag

The MathML <munderover> tag in HTML5 is used attach any accent or limit under the expression plus over the expression.
Syntax: 
 

<munderover> base underscript </munderover>

Attributes: This tag accepts some attributes which are listed below: 
 



Below example illustrates the concept of HTML5 <munderover> tag:
Example: 
 




<!DOCTYPE html>
<html>
 
<head>
    <title>HTML5 MathML munderover tag</title>
    <style>
        .munderover {
            font-size: 40px;
        }
    </style>
</head>
 
<body>
    <center>
        <h1 style="color:green">GeeksforGeeks</h1>
 
        <h3>HTML5 MathML <munderover> Tag</h3>
 
        <math>
            <munderover class="munderover">
                <mo> ∫ </mo>
                <mn> 0 </mn>
                <mi> ∞</mi>
            </munderover>
            <mrow>
                <mi>GeeksforGeeks</mi>
                <mo>=</mo>
                <mi>
                  A Online Computer Science
                  Portal for Geeks
                </mi>
            </mrow>
        </math>
    </center>
</body>
 
</html>

Output: 
 



Supported Browsers: The browsers supported by HTML5 MathML <munderover> tag are listed below: 
 

 


Article Tags :