|
|
|
Scrollbars in Frames |
By default frame windows will have a value auto for scrolling attribute. i.e, If we leave the setting for scrolling, a scrollbar will appear only if needed.
Example:
<Frameset rows="50%,50%">
<Frame src="frame1src.html" scrolling="yes"> -- For this frame scrollbars will appear.
<Frame src="frame2src.html" scrolling="no"> -- For this frame scrollbars will not appear.
</Frameset>
| |
|
|
|