- 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
4 odpowiedzi
+ 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 ^^
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
- 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