Why is the 2nd row of this table not showing in this code? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Why is the 2nd row of this table not showing in this code?

Hi everybody! I am learning HTML. The code is: <table border="2"> <tr rowspan="1"> <td bgcolor="red">Red</td> <td bgcolor="blue">Blue</td> <td bgcolor="green">Green</td> </tr> <tr> <td></td> <td></td> <td colspan="2"></td> </tr> <tr> <td>Yellow</td> <td colspan="1">Orange</td> </tr> </table> My question is:The 2nd row cannot be seen in the output.Why is it so? I am using SoloLearn's online HTML editor

3rd Aug 2018, 12:14 PM
Sanyog Jain
3 Answers
+ 1
So simple! If you didnt fill the second row with at least one word... nothing appear... Because the row is emptied. Thank You
3rd Aug 2018, 12:27 PM
Jingga Sona
Jingga Sona - avatar
+ 2
Thank you
4th Aug 2018, 11:27 AM
Sanyog Jain
3rd Aug 2018, 12:22 PM
Calviղ
Calviղ - avatar