
Information
The Basics
Text
Pictures
Spacing
Colors
Links
Alignment
Lists/Bullets
Tables
Frames
Multimedia
Forms
ISO Characters
Meta Tags
Contact Us

Email Support
Email Contact
|
 |
 |
Introduction
The Scroll Bar is the bar on the right side of most windows that allows you to scroll up and down on a page. When using frames, you
are able to specify if the scroll bar is on, off, or have the web page automatically detect if it is needed.
Scroll Bar
To specify the setting for the scroll bar, insert the line SCROLLING="X" into the <FRAME SRC="URL"> tag so the final
result looks like this.
<FRAME SRC="URL" SCROLLING="X">
X is replaced with one of three options.
YES - Turns the scroll bar on.
NO - Turns the scroll bar off.
AUTO - Web page detect if needed.
|
index.html - Notepad |
....<HEAD>
<FRAMESET ROWS="50%,50%">
<FRAME SRC="http://www.web-site-1.com" NAME="page1" SCROLLING="YES">
<FRAME SRC="http://www.web-site-2.com" NAME="page2" SCROLLING="NO">
</FRAMESET>
</HEAD>....
|
|
Test Your HTML
|
|