+ 1
[DUPLICATE] What is colspan?
I am not understanding the meaning of colspan
3 Answers
+ 2
Colspan basically indicates how many columns a cell should take up (take a look at this website, they explain it pretty well https://www.w3schools.com/tags/att_colspan.asp)
To add it into your table, just do the following:
<table>
<tr>
<td colspan = "3">
<!--Your code goes here-->
</td>
</tr>
</table>
- 1
Thanks donÂŽt forget to follow