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
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 02 Jun, 2022
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials