+ 1
I dont undestand why the word(colspan) used here....?
<table border="2"> <tr> <td>Red</td> <td>Blue</td> <td>Green</td> </tr> <tr> <td><br /></td> <td colspan="2"><br /></td> </tr> </table>
1 Respuesta
+ 4
Col stands for column.
Colspan="2" means that at this spot, a column occupies the space of two columns.
Try to run your code in Playground to see how it looks!