Open In App

HTML5 | MathML <munder> Tag

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

<munder> base underscript</munder>

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



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




<!DOCTYPE html>
<html>
 
<head>
    <title>HTML5 MathML munder tag</title>
</head>
 
<body>
    <center>
        <h1 style="color:green">GeeksforGeeks</h1>
 
        <h3>HTML5 MathML <munder> Tag</h3>
 
        <math>
            <munder accentunder="true">
                <mrow>
                    <mi>GeeksforGeeks</mi>
                </mrow>
                <mo> ⏟ </mo>
            </munder>
 
            <mrow>
 
                <mo> = </mo>
                <mi>A Online Computer Science Portal</mi>
            </mrow>
 
        </math>
    </center>
</body>
 
</html>

Output: 
 



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

 


Article Tags :