HTML Attribute for <TABLE ...>
CELLSPACING =integer

Usage Recommendation
thumbs up Use it.

illustration of CELLSPACING attributeCELLSPACING sets the amount of space between the cells of a table. If the borders are visible, CELLSPACING controls the width of the internal borders. So, for example, the following examples demonstrate CELLSPACING when it is absent, when it it set to 2, and when it is set to 10.

This Code Makes This
<TABLE BORDER>
peachescherries
walnutsalmonds
<TABLE BORDER CELLSPACING=2>
peachescherries
walnutsalmonds
<TABLE BORDER CELLSPACING=10>
peachescherries
walnutsalmonds

<TABLE WIDTH="..."> >