Creating A Placeholder For An Empty Table Cell
Posted Friday, February 6, 2004
By simply adding the character code within your HTML, your table cell will be visible
<TABLE BORDER CELLPADDING="4">
<TR>
<TD>Your Text</TD>
<TD> </TD>
<TD>Your Text</TD>
</TR>
<TR>
<TD> </TD>
<TD>Your Text</TD>
<TD> </TD>
</TR>
</TABLE>