Open In App

HTML5 | MathML <mroot> Tag

Last Updated : 24 Aug, 2021
Comments
Improve
Suggest changes
Like Article
Like
Report

The MathML <mroot> tag in HTML5 is use to display the power of the root like root squire.
Syntax: 
 

<mroot> child elements </mroot>


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

  • class|id|style: This attribute holds the styles of the child elements.
  • mathbackground: This attribute holds the value of the math expressions background color.
  • href: This attribute holds any hyperlink to a specified URL.
  • mathcolor: This attribute holds the color of the math expressions.


Below example will illustrates the concept of HTML5 MathML <mroot> tag:
Example: 
 

html
<!DOCTYPE html>
<html>

<head>
    <title>HTML5 MathML mroot tag</title>
</head>

<body style="text-align:center;">
    
    <h1 style="color:green">GeeksforGeeks</h1>
    
    <h3>HTML5 MathML &lt;mroot&gt; tag</h3>
    
    <math>
        <mroot>
            <mi>Geeks</mi>
            <mn>Geeks</mn>
        </mroot>
        <mo>=</mo>
        <mtext>GeeksGeeks</mtext>
    </math>
</body>

</html>

Output: 
 


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

  • Firefox
  • Safari


 


Next Article

Similar Reads