Attribute for <FRAME ...>
SCROLLING = YES | NO | AUTO

Usage Recommendation
use it, but watch for overformatting

SCROLLING says if there should be a scroll bar on the right and/or bottom of the frame. YES says there absolutely will be scroll bars, even if they are not needed. NO says there will not be scroll bars, even if they might be needed. AUTO is the default: there will be scroll bars on the side and/or bottom as needed.

this code produces this
<FRAMESET ROWS="30%,30%,*">
<FRAME SRC="scrollingYes.html"  SCROLLING=YES>
<FRAME SRC="scrollingNo.html"   SCROLLING=NO>
<FRAME SRC="scrollingAuto.html" SCROLLING=AUTO>
<NOFRAMES>NOFRAMES stuff
</NOFRAMES>
</FRAMESET>
this page

It's best to avoid using SCROLLING. If you turn off scrolling, users with small screens may be unable to see all of what you have in the frame, and that makes for an annoying page.





About the Author
Copyright 1997-2002 Idocs Inc. Content in this guide is offered freely to the public under the terms of the Open Content License and the Open Publication License. Contents may be redistributed or republished freely under these terms so long as credit to the original creator and contributors is maintained.