<FRAMESET ...><FRAMESET ...>FRAMEBORDER =YES |1 |NO |0FRAMESPACING =integerBORDER =integer
The issue of what goes in between the frames is determined (somewhat confusingly) with
FRAMEBORDERFRAMESPACINGBORDER
To set the frames so there are no borders at all see "No Borders".
FRAMEBORDERYES, which is the default, says there should be borders. 1 is the same as YES.
NO says there should not be 3-D borders. Unfortunately, the name "FRAMEBORDER" is deceptive. WithNO there are not cool 3-D borders, but there is still
the default background color (usually gray or white) between the frames:
For example:
| this code | produces this |
<FRAMESET ROWS="20%,*" FRAMEBORDER=NO> |
this page |
To control how much space is between the frames (that is, how big are the borders) use
FRAMESPACINGBORDERFRAMESPACINGBORDER
| this code | produces this |
<FRAMESET ROWS="20%,*" FRAMESPACING=30 border="1" bordercolor="#CBD3E1" bgcolor="#F1F4F5"> |
this page with some unusual frame borders |
The most common use of
FRAMEBORDERFRAMESPACINGBORDERNO,
FRAMESPACINGBORDER
| this code | produces this |
<FRAMESET ROWS="20%,*" FRAMEBORDER=NO FRAMESPACING=0 BORDER=0> |
this page |
<FRAMESET BORDERCOLOR="...">