|
|
|
Lets say you don�t want a scroll bar in the menu window.
Furthermore the main window should have a scrollbar if needed (if the HTML document doesn�t fit in the window), but if not needed - there should be no scrollbars.
Then the code should look like this:
<frameset cols="120,*" frameborder="0" border="0" framespacing="0">
<frame src="menu.htm" name="menu" noresize scrolling=no>
<frame src="frontf.htm" name="main" noresize scrolling=auto>
</frameset>
|
|
If you leave out the setting for scrolling, a scrollbar will appear if needed - otherwise not.
The next page explains in detail how to link within a frameset...
|
|
|
|