HTML | <iframe> scrolling Attribute
The HTML <iframe> scrolling Attribute is used to specify that whether the scrollbar will be displayed or not in the <Iframe> Element. Basically the scrollbar is used when the content is large than the Iframe Element.
Syntax
<iframe scrolling="auto | yes | no">
Attribute Values
- auto: It has a default value. The scrollbar appears when needed.
- yes: This value shows the scrollbar in the Iframe Element.
- no: This value does not show the scrollbar in the Iframe Element.
Example:
<!DOCTYPE html> < html > < body > < h1 > GeeksForGeeks </ h1 > < h2 > HTML Iframe scrolling Attribute </ h2 > < p >Content goes here</ p > height = "300" width = "400" marginwidth = "50" scrolling = "no" > </ iframe > </ body > </ html > |
Output:
Supported Browsers: The browsers supported by HTML <iframe> scrolling Attribute are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Apple Safari
- Opera