Sololearn: Learn to Code
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3
colspan makes the table column span. for example: <table> <tr> <td>a</td><td>b</td><td>c</td> </tr> <tr> <td colspan="2">d</td><td>e</td> </tr> </table> will result in: | a | b | c | | d | e | as you can see the column having the text "d" spans two columns. just play around with the code in the Playground and you will get out it works.
28th May 2016, 2:45 PM
James Flanders