Horje
How to create HTML Table - Colspan

To make a cell span over multiple columns, use the colspan attribute:


Basic Example of HTML Table - Colspan

 <table>
  <tr>
    <th colspan="2">Name</th>
    <th>Age</th>
  </tr>
  <tr>
    <td>Jill</td>
    <td>Smith</td>
    <td>43</td>
  </tr>
  <tr>
    <td>Eve</td>
    <td>Jackson</td>
    <td>57</td>
  </tr>
</table> 

Full Example of HTML Table - Colspan

To make a cell span more than one column, use the colspan 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 columns</h2>
<p>To make a cell span more than one column, use the colspan attribute.</p>

<table style="width:100%">
  <tr>
    <th colspan="2">Name</th>
    <th>Age</th>
  </tr>
  <tr>
    <td>Jill</td>
    <td>Smith</td>
    <td>43</td>
  </tr>
  <tr>
    <td>Eve</td>
    <td>Jackson</td>
    <td>57</td>
  </tr>
</table>
</body>
</html>

Output should be:

Full Example of HTML Table - Colspan
Reffered: https://www.w3schools.com/html/tryit.asp?filename=tryhtml_table_colspan2





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 - ColspanHTML Table Colspan and Rowspan
Full Example of HTML Table - ColspanHTML Table Colspan and Rowspan

Read Full:
HTML Table Colspan and Rowspan
Category:
Web Tutorial
Sub Category:
HTML Table Colspan and Rowspan
Uploaded:
1 year ago
Uploaded by:
Admin
Views:
34



Share on: