I have a table that has 5 rows
Only the 1st row has data.
But, I still want to see the border for all of the empty cells.
Seems like only the cells that contain data are being displayed.
What if I want to display all 5 rows even if the last 4 rows are empty?
Thanks
Carl
I have something like this
Only the 1st row has data.
But, I still want to see the border for all of the empty cells.
Seems like only the cells that contain data are being displayed.
What if I want to display all 5 rows even if the last 4 rows are empty?
Thanks
Carl
I have something like this
Code:
<TABLE BORDER="2">
<TR><TD>dfdfdfdf</TD><TD>dfdsfdsfsd</TD></TR>
<TR><TD></TD><TD></TD></TR>
<TR><TD></TD><TD></TD></TR>
<TR><TD></TD><TD></TD></TR>
<TR><TD></TD><TD></TD></TR>
</TABLE>