Attribute for <TABLE ...>
CELLSPACING = integer
| Usage Recommendation |
use it |

CELLSPACING 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 |
produces this |
<TABLE BORDER>
|
| peaches | cherries |
| walnuts | almonds |
|
<TABLE BORDER CELLSPACING=2>
|
| peaches | cherries |
| walnuts | almonds |
|
<TABLE BORDER CELLSPACING=10>
|
| peaches | cherries |
| walnuts | almonds |
|