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?
Explanation:
Statement 4 to 6: Row 1
Statement 7 to 10: Row 2
Statement 11 to 13: Row 3
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<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 |