Open In App

HTML5 | MathML <mrow> Tag

The MathML <mrow> tag in HTML5 is used to create a row that contains some mathematical expression or any random text. When you need to write some mathematical expressions, this tag is useful to make a grouping of the expression. By using <mrow> the expression will look nicer, clean with indentation plus line breaking.

Syntax:  



<mrow> child elements </mrow>

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

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






<!DOCTYPE html>
<html>
 
<head>
    <title>HTML5 MathML mrow tag</title>
</head>
 
<body style="text-align:center;">
 
    <h1 style="color:green">GeeksforGeeks</h1>
     
    <h3>HTML5 MathML <mrow> tag</h3>
     
    <math>
        <mrow>
            <mrow>
                <msup>
                    <mi>x</mi>
                    <mn>2</mn>
                </msup>
                <mo>+</mo>
                <msup>
                    <mi>y</mi>
                    <mn>2</mn>
                </msup>
            </mrow>
            <mo>=</mo>
            <msup>
                <mi>z</mi>
                <mn>2</mn>
            </msup>
        </mrow>
    </math>
</body>
 
</html>

Output:  

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

 


Article Tags :