<FRAMESET> FRAMESET

Description
The <FRAMESET> tag is a container tag for frames. The ROWS and COLS attributes determine the layout of the frames contained within this tag. The ROWS attribute determines the relative frame heights within a single column. It takes the form of comma delimited values that represent the heights of the frames. The heights can be absolute or relative. Hence both "20%,20%,60%" and "120,130,430" are valid values. In the first case, there will be 3 frames whose heights will be 20%, 20%, and 60% of the screen. In the second case, actual pixels are used instead of percentages. The use of wildcards is also possible. For example, if the value is "20%,20%,*" the wildcard causes the remaining space to be filled with the last frame.

The COLS attribute is the same as the ROWS attribute except that the comma delimited values represent relative frame widths instead of frame heights.

The following code splits the screen into 2 frames, one on the left and the other on the right, each having a width of 20% and 80% respectively:

<FRAMESET COLS="20%,80%">
<FRAME SRC="left.html">
<FRAME SRC="right.html">
</FRAMESET>

Syntax
<FRAMESET [ROWS=comma delimited list of rows' heights] [COLS=comma delimited list of columns' widths]>

Collection of frames using the <FRAME> tag

</FRAMESET>