How do I make a table using semantic markup that has 3 columns and 1 row in the body as well​ as a row in the header | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
- 1

How do I make a table using semantic markup that has 3 columns and 1 row in the body as well​ as a row in the header

16th Jul 2017, 4:59 AM
Heather Reneé Tobler
Heather Reneé Tobler - avatar
4 Antworten
+ 3
<table> <thead> <tr> <th colspan="3">table header as single column</th> </tr> </thead> <tbody> <tr> <td>simple cell for 3 colums row</td> <td>simple cell for 3 colums row</td> <td>simple cell for 3 colums row</td> </tr> </tbody> </table> ... <thead> and <tbody> (and <tfoot>) are not mandatory, but ever internally build by browser parsing when buildind DOM ^^
16th Jul 2017, 9:48 AM
visph
visph - avatar
0
the question I have to answer looks like this 1<body> 2 3 4</body> I'm not sure what it wants me to do
16th Jul 2017, 5:21 AM
Heather Reneé Tobler
Heather Reneé Tobler - avatar
- 2
awesome awesome thx I'm doing this coding from scratch challenge and I have to do it in 7 days for coder camps takes 1000 off my tuition I'm fairly new to programming I'll get stuck and usually cuz I'm thinking to much into it lol
16th Jul 2017, 3:35 PM
Heather Reneé Tobler
Heather Reneé Tobler - avatar