Display HTML Table Borders within Empty Table Cells
|
Without using
a placeholder within your blank HTML table cells, your empty table cell borders
will not display. By simply adding the character code within your
HTML, your table cell will be visible.
Example HTML Code With No Placeholders:
<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> |
Browser View With No
Placeholders:
Your Text |
|
Your Text |
|
Your Text |
|
Example Code With
Placeholders:
<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> |
Browser View With
Placeholders:
Your Text |
|
Your Text |
|
Your Text |
|
More Web Design
Tips |