Colspan & Rowspan Attributes on HTML Table

Colspan & Rowspan Attributes:

• You will use colspan attributes if you want to merge two or more columns nto single
column.
• Rowspan is used if you want to merge two more rows.
Example:

<!DOCTYPE html>
<html>
<head>
<title>HTML Table</title>
</head>
<body>
<table border=”1” >
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
</tr>
<tr>
<td rowspan="2">Row 1 cell 1</td>
<td>Row 1 cell 2</td>
<td>Row 1 cell 3</td>
</tr>
<tr>
<td>Row 2 cell 2</td>
<td>Row 2 cell 3</td>
</tr>
<tr>
<td colspan="3">Row 3 cell 1</td>
</tr>
</table>
</body>
</html>
OUTPUT:

Comments

Popular posts from this blog

Set Font Colour

HTML FONTS

HTML Table Heading