Your Guide to Professional
Web Site Design and Development

HTML Tips
HTML Codes
Web Development
Web Design Tips
JavaScript Codes
216 Web Safe Colors
CSS Tutorial
JavaScript Tutorial
ASCII Character Codes

Offering a guide to professional web site design, web page design and web design guidelines

| Web Site Development | HTML Codes | HTML Tips | Web Design TipsJavascript Snippets | 216 Safe Colors | Symbols | CSS Tutorial | JavaScript Tutorial |

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>&nbsp;</TD>
<TD>Your Text</TD>
</TR>
<TR>
<TD>&nbsp;</TD>
<TD>Your Text</TD>
<TD>&nbsp;</TD>
</TR>
</TABLE>

Browser View With Placeholders:

Your Text   Your Text
  Your Text  

 More Web Design Tips