Open In App
Related Articles

HTML | <iframe> scrolling Attribute

Improve Article
Improve
Save Article
Save
Like Article
Like

The HTML <iframe> scrolling Attribute is used to specify 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">

Note: This attribute has been DEPRECATED and is no longer recommended.

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: 

html




<!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
Last Updated : 02 Jun, 2022
Like Article
Save Article
Similar Reads
Related Tutorials