
|
Space can be added between the table cells using the <CELLSPACING=> tag within the <TABLE> tag.
This table has no cellspacing.
<TABLE BORDER=1 >
<TR>
<TD>1</TD> <TD>2</TD>
</TR>
<TR>
<TD>3</TD> <TD>4</TD>
</TR>
</TABLE>
|
And the same table with cellspacing set at 25
By typing it like this:
<TABLE BORDER=1
CELLSPACING=25>
<TR>
<TD>1</TD> <TD>2</TD>
</TR>
<TR>
<TD>3</TD> <TD>4</TD>
</TR>
</TABLE>
|