Horje
How to create HTML Table - Rowspan

To make a cell span over multiple rows, use the rowspan attribute:


Basic Example of HTML Table - Rowspan

 <table>
  <tr>
    <th>Name</th>
    <td>Jill</td>
  </tr>
  <tr>
    <th rowspan="2">Phone</th>
    <td>555-1234</td>
  </tr>
  <tr>
    <td>555-8745</td>
</tr>
</table> 

Full Example of HTML Table - Rowspan

To make a cell span over multiple rows, use the rowspan attribute:
index.html
Example: HTML
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
}
</style>
</head>
<body>

<h2>Cell that spans two rows</h2>
<p>To make a cell span more than one row, use the rowspan attribute.</p>

<table style="width:100%">
  <tr>
    <th>Name</th>
    <td>Jill</td>
  </tr>
  <tr>
    <th rowspan="2">Phone</th>
    <td>555-1234</td>
  </tr>
  <tr>
    <td>555-8745</td>
  </tr>
</table>
</body>
</html>

Output should be:

Full Example of HTML Table - Rowspan

Note: The value of the rowspan attribute represents the number of rows to span.





Related Articles
What is HTML Table Colspan HTML Table Colspan and Rowspan
What is HTML Table - Rowspan HTML Table Colspan and Rowspan
How to create HTML Table - Colspan HTML Table Colspan and Rowspan
How to create HTML Table - Rowspan HTML Table Colspan and Rowspan

Single Articles
Basic Example of HTML Table - RowspanHTML Table Colspan and Rowspan
Full Example of HTML Table - RowspanHTML Table Colspan and Rowspan

Read Full:
HTML Table Colspan and Rowspan
Category:
Web Tutorial
Sub Category:
HTML Table Colspan and Rowspan
Uploaded by:
Admin
Views:
83


Reffered: https://www.w3schools.com/html/html_table_colspan_rowspan.asp