+ 1
Which tag contains the cell tags besides the table tag? < >
Answers pls!
11 odpowiedzi
+ 16
Clara Jameson🔱✅
As the first said, <td> </td> are used for put the datas in the table (cell tags).
But they must put in beside the <tr></tr> tags, because of the tr means table rows, and you need to have at least 1 row in your table to be able to put your cell datas in it.
Easier: if you don't have rows, then you can't use cells.
And so the all of these have to be between the <table></table> tags, for declare your rows and coloumns as a table. ;)
<table>
<tr><!-- first row -->
<td>First coloumn</td>
<td>2nd coloumn</td>
</tr>
<tr><!-- 2nd row -->
<td>1st cell in the 2nd row </td>
<td>2nd cell in the 2nd row </td>
</tr>
</table>
Use it like this ;)
+ 6
<tr>
+ 4
<tr>
+ 2
<table><tr><td>
+ 2
the answer is<tr>
+ 1
The answer is tr
0
I'm not sure what your asking but tables are like this.
<table>
<tr>
<td></td>
</tr>
</table>
tr = table row
td = table data
0
Tr
0
<td>
0
It is <tr>
0
tr