+ 3
What is colspan="2" , something in html ,why we use this
Html
2 Respuestas
+ 14
Colspan ( COLUMN SPAN ) is used to make a cell span more than one column or used to join columns together. For example
● <td colspan = "2" > <br/> </td> (join two columns together)
● <td colspan = "5" > <br/> </td> (join five columns together)
☆ Like Colspan, Rowspan ( ROW SPAN) is used to make the cell span more than one row.
https://code.sololearn.com/W0otOtt1jfBr/?ref=app
~I got it from one of the comments in that lesson 👇🏻👇🏻
+ 10
You can go through this once again
https://www.sololearn.com/learn/HTML/1033/