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? < >

Answers pls!

17th Sep 2019, 12:42 AM
De Kestro
De Kestro - avatar
11 Answers
+ 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 ;)
17th Sep 2019, 4:50 AM
Donthack
Donthack - avatar
+ 5
<tr>
17th Sep 2019, 8:13 AM
Casey Jones
Casey Jones - avatar
+ 3
<tr>
18th Sep 2019, 1:02 PM
Saima Dilawar Haju
Saima Dilawar Haju - avatar
+ 2
<table><tr><td>
29th Nov 2020, 10:51 PM
Ikechukwu Mabel Precious
Ikechukwu Mabel Precious - avatar
+ 2
the answer is<tr>
30th Jul 2022, 11:01 PM
Aya Ashraf Fekry Saed
Aya Ashraf  Fekry Saed - avatar
+ 1
The answer is tr
3rd Feb 2022, 7:07 PM
Angelica Adipo
Angelica Adipo - avatar
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
17th Sep 2019, 12:59 AM
Madeline Ellingson
Madeline Ellingson - avatar
0
Tr
17th Oct 2022, 7:32 PM
farid khairy
0
<td>
21st Oct 2022, 9:38 AM
Sheetal Saini
0
It is <tr>
24th Nov 2022, 1:32 PM
Hema Motwani
Hema Motwani - avatar
0
tr
4th Jan 2023, 9:18 PM
Sanoo Gueen
Sanoo Gueen - avatar