previous | start | next

FRAMESET

<FRAMESET
COLS=col-widths
FRAMEBORDER=1|0
FRAMESPACING=spacing
ROWS=row-heights>
</FRAMESET>

Hosts the FRAME, FRAMESET, and NOFRAMES elements. FRAMESETs can be nested within each other to have layouts within a frame. Each frameset can exist at the same level as a frame.

The end-tag is required.

COLS=col-widths
Creates a frame document with columns. You can specify the column dimensions by percentage (%), pixels, or a relative size (*).
FRAMEBORDER=1|0
Provides the option to display or not display a 3-D border for a frame. 1 (default) sets a frame border. 0 displays no border.
FRAMESPACING=spacing
Creates additional space between frames, in pixels.
ROWS=row-heights
Creates a frame document with rows. You can specify the row dimensions by percentage (%), pixels, or a relative size (*).

The FRAMEBORDER= and FRAMESPACING= attributes are inherited from any containing FRAMESET element, which means you need only set the attribute on the single, outermost FRAMESET tag to affect all FRAME tags on that page.

Example

<FRAMESET SCROLLING=YES COLS="25%, 50%, *">
    <FRAME SRC="contents.htm">
    <FRAME SRC="info.htm">
    <FRAME SCROLLING=NO SRC="graphic.htm">
</FRAMESET>


previous | start | next