Which tag contains the cell tags besides the table tag? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Which tag contains the cell tags besides the table tag?

Which tag contains the cell tags besides the table tag?

3rd Feb 2020, 7:42 PM
Cahlin Taylor
Cahlin Taylor - avatar
1 Answer
+ 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.
3rd Feb 2020, 11:51 PM
Xyenia 🦉
Xyenia 🦉 - avatar