
Space can be added between the data and the cell wall using the <CELLPADDING> attribute in the <TABLE> tag.
This table has no cellpadding.
<TABLE BORDER=1 >
<TR>
<TD>1</TD> <TD>2</TD>
</TR>
<TR>
<TD>3</TD> <TD>4</TD>
</TR>
</TABLE>
|
The same table with <CELLPADDING=25> in the <TABLE> tag.
By typing it like this:
<TABLE BORDER=1 CELLPADDING=25>
<TR>
<TD>1</TD> <TD>2</TD>
</TR>
<TR>
<TD>3</TD> <TD>4</TD>
</TR>
</TABLE>
|