You can set a distance between cells and cells in a table so that the table doesn't look too compact.
Basic syntax
<TABLECellSpacing=value>
Grammar explanation
The spacing of cells is in pixels.
File Example: 10-9.htm
Sets the cell spacing for a table.
01<!---------------------------------->
02<!--File Example:10-9.htm-->
03<!--File Description: Set the cell spacing for the table-->
04<!---------------------------------->
05
06
07<title> set cell spacing for tables </TITLE>
08
09<body>
10
11<tableborder=3width=400height=100bordercolor= #336699Background =10-8.jpgcellspacing=10>
12<tr>
13<td> Web image Software </TD><TD>Fireworks</TD>
14</tr>
15<tr>
16<td> Web making software </TD><TD>Dreamweaver</TD>
17</tr>
18<tr>
19<td> Web animation software </TD><TD>Flash</TD>
20</tr>
21</table>
22</body>
23
File description
Line 11th defines a table with a cell spacing of 10 pixels.