- 1

Why my code does'nt display on sreen ?

Look at this When i write it and register it does'nt display <table> <tr> <td></td> <td></td> <td></td> </tr> </table>

7th Mar 2021, 1:42 PM
Arthur Vital Hel
Arthur Vital Hel - avatar
4 Answers
+ 1
because empty cells are dropped from display, and you doesn't fill at least one, so whole table is dropped...
7th Mar 2021, 1:45 PM
visph
visph - avatar
0
Okay i try to fill
7th Mar 2021, 1:47 PM
Arthur Vital Hel
Arthur Vital Hel - avatar
0
<table> <tr> <td> put </td> <td> something </td> <td> here </td> </tr> </table>
7th Mar 2021, 9:35 PM
▲TopGun ▲
▲TopGun ▲ - avatar
- 1
Your table should have a border otherwise it'll not display : <table border = "2px"> <tr> <td> put </td> <td> here </td> <td> something </td> </tr> </table>
9th Mar 2021, 4:44 AM
Samin Sakur
Samin Sakur - avatar