Open In App

HTML5 MathML rowspan Attribute

Last Updated : 18 Nov, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report

This attribute holds the value that how many rows does the cell extend. This attribute is accepted by the <mtd> tag only. 

Syntax:

<element rowspan="non-negative-int">

Attribute Values:

  • non-negative-int: This value holds the integer that create the span by rows.

Below example illustrate the rowspan in HTML MathML:

Example:

HTML
<!DOCTYPE html> 
<html> 

<head> 
    <title>HTML5 MathML rowspan Attribute</title> 
</head> 

<body> 
    <center> 
        <h1 style="color:green"> 
            GeeksforGeeks 
        </h1> 

        <h3>HTML5 MathML rowspan Attribute</h3> 

        <math> 
            <mi>GeeksforGeeks</mi> 
            <mo>=</mo> 
            <mtable frame="solid" columnlines="dashed"> 
                <mtr mathbackground="green;"> 
                    <mtd>Course</mtd>
                    <mtd rowspan="4">Date</mtd>
                    <mtd>Fee</mtd> 
                </mtr> 
                <mtr> 
                    <mtd> 
                        <mi>C++ STL</mi> 
                    </mtd> 
                    <mtd> 
                        <mi> 1499</mi> 
                    </mtd> 
                </mtr> 
                <mtr> 
                    <mtd> 
                        <mi>Placement 100 </mi> 
                    </mtd> 
                    <mtd> 
                        <mi>9999 </mi> 
                    </mtd> 
                </mtr> 
                <mtr> 
                    <mtd> 
                        <mi>DSA Foundation </mi> 
                    </mtd> 
                    <mtd> 
                        <mi>7999</mi> 
                    </mtd> 
                </mtr> 
            </mtable> 
        </math> 
    </center> 
</body> 

</html> 

Output:

Supported Browsers: The browsers supported by HTML5 MathML rowspan attribute are listed below:

  • Firefox

Next Article

Similar Reads