Site icon T4Tutorials.com

HTML Rowspan, Colspan

What is rowspan?

The amount of row that a table covers.

What is colspan?

The amount of column that a table covers.

How to put rowspan and colspan in HTML?

Download Code

rowspan and colspan in html
Output:

rowspan and colspan in hypertext markup language

Explanation:

Statement 4 to 6: Row 1

Statement 7 to 10: Row 2

Statement 11 to 13: Row 3

<table border="3" bordercolor="#FFCC00">
<tr>
<td rowspan="2">1</td>
<td colspan="2">2</td>
<td>3</td>
</tr>
<tr>
<td>
apple
</td>
<td>
banana
</td>
</tr>
</table>

Output

1 2 3
apple banana

Video Lecture

Exit mobile version