+ 1
Which tag contains the cell tags besides the table tag?
Which tag contains the cell tags besides the table tag?
1 Réponse
+ 2
<td>, table definition. These make the actual cells, but you need to drill down to use <td>, e.g.
<table>
<tr>
<td>content</td>
<td>more content</td>
</tr>
</table>
This creates 2 cells in a table.