FRAMESET Attributes
COLS: how many cols in the framesetROWS: how many rows in the frameset
FRAMEBORDER: if the frames should have borders
FRAMESPACING: space between the frames
BORDER: space between frames
BORDERCOLOR: color of frame borders
Scrollbar
SCROLLING= YES - NO - AUTO; specifies whether or not a scrollbar will be present on a frame’s border.
YES - a scrollbar to be visible on a frame.
NO - no scrollbar to be visible on a frame.
AUTO - default - allows the browser to decide whether or not scrollbars are needed and, if so, to place them where necessary.
Example
<FRAMESET ROWS="33%,33%,*">
<FRAME SRC="scroll-Yes.html" SCROLLING=YES>
<FRAME SRC="scroll-No.html" SCROLLING=NO>
<FRAME SRC="scroll-Auto.html" SCROLLING=AUTO>
</FRAMESET>
Frames can be organized into ROWS or COLS (columns) by coding dimensions in the frameset tag. The size of the frames are put between quotes in the ROW or COLS attributes. An asterisk (*) can be used to represent any remaining screen space that's not already been assigned to other frames. Either pixels or percentages can be used to size frames.<FRAME SRC="scroll-Yes.html" SCROLLING=YES>
<FRAME SRC="scroll-No.html" SCROLLING=NO>
<FRAME SRC="scroll-Auto.html" SCROLLING=AUTO>
</FRAMESET>