Can we make more than two cells in a row with only one use of <tr> ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Can we make more than two cells in a row with only one use of <tr> ?

6th Sep 2016, 6:33 PM
Achyut Jahagirdar
Achyut Jahagirdar - avatar
4 Answers
+ 1
Yes, just put more columns. <table> <tr> <td>One</td> <td>Two</td> <td>Three</td> </tr> </table>
6th Sep 2016, 10:34 PM
Zen
Zen - avatar
0
it's your wish. you can make as many as you want
7th Sep 2016, 12:09 PM
SAKETH YERRA
SAKETH YERRA - avatar
0
You can use rowspan to achieve it!
10th Sep 2016, 3:33 AM
Sukumar Chandrasekar
Sukumar Chandrasekar - avatar
0
yes you can add more than 2 cells. Cells are added using <td> tag and you may add as many of them as you require. structure might be <table> <tr> <td> cell 01 </td> <td> cell 02 </td> <td> cell 03 </td> <td> cell 04 </td> </tr> </table>
13th Sep 2016, 6:54 PM
Adil Farooq Awan
Adil Farooq Awan - avatar