<iframe src="" scrolling="">
The scrolling attribute of the IFRAME element specifies whether or not to display the scrollbars.
<iframe src="example.html" scrolling="no"></iframe>
Attribute |
Value |
Explanation |
scrolling=" " |
yes |
scrollbars are displayed |
no |
scrollbars are not displayed |
auto |
displays scrollbars as needed (default) |
Example