- 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>
4 Answers
+ 1
because empty cells are dropped from display, and you doesn't fill at least one, so whole table is dropped...
0
Okay i try to fill
0
<table>
<tr>
<td> put </td>
<td> something </td>
<td> here </td>
</tr>
</table>
- 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>