Attribute for <TABLE ...>
BORDER = integer
BORDER
establishes the size of the border surrounding the table. The default value is 0, which is an invisible border. If you put in
BORDER
without a value, it defaults to 1.
Here are some examples of the table above using different border values:
<TABLE>
|
<TABLE BORDER=0>
|
<TABLE BORDER>
|
<TABLE BORDER=15>
|
peaches | cherries |
walnuts | almonds |
|
peaches | cherries |
walnuts | almonds |
|
peaches | cherries |
walnuts | almonds |
|
peaches | cherries |
walnuts | almonds |
|
Note that with a BORDER
value of 0, the internal borders are invisible; with any value 1
and up, they are visible, but do not change size. (Internal border size is determined by
CELLSPACING
.)