Open In App

HTML5 MathML <mover> Tag

The HTML5 MathML <mover> tag is an inbuilt tag in HTML5. This tag is used to attach an accent or a limit over an expression.

Syntax: 



<mover> base overscript </mover>

Attributes: This tag accepts below mentioned attributes: 

Below example illustrates the concept of HTML5 MathML <mover> tag:






<!DOCTYPE html>
<html>
 
<head>
    <title>HTML5 MathML mover tag</title>
</head>
 
<body>
    <center>
        <h1 style="color:green">GeeksforGeeks</h1>
 
        <h3>HTML5 MathML mover Tag</h3>
 
        <math>
            <mover accent="true">
                <mrow>
                    <mi> x </mi>
                    <mo> + </mo>
                    <mi> y </mi>
                    <mo> + </mo>
                    <mi> z </mi>
                </mrow>
                <mo>⏞</mo>
            </mover>
        </math>
    </center>
</body>
 
</html>

Output: 

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


Article Tags :