The scrolling attribute of the FRAME element specifies whether or not to display the scrollbars.
<frame src="example.html" scrolling="no">
| Attribute | Value | Explanation |
|---|---|---|
| scrolling=" " | yes | scrollbars are displayed |
| no | scrollbars are not displayed | |
| auto | displays scrollbars as needed (default) |
The scroll bar in the right frame is not displayed.
<html> <head> <title>TAG index</title> </head> <frameset cols="50%,50%"> <frame src="example12a.html" scrolling="yes"> <frame src="example12b.html" scrolling="no"> <noframes> <body> <p>Alternate content</p> </body> </noframes> </frameset> </html>