HTML | <frame> scrolling Attribute Last Updated : 28 Jun, 2021 Comments Improve Suggest changes Like Article Like Report The HTML <frame> scrolling attribute is used to specify that whether the scrollbar will be displayed or not in the <frame> element. Basically, the scrollbar is used when the content is larger than the Iframe Element.Syntax: <frame scrolling="auto|yes|no"> Attribute Values: auto: It has the 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. Note: The <frame> tag is not supported by HTML 5.Example: html <!DOCTYPE html> <html> <head> <title> HTML frame scrolling Attribute </title> </head> <frameset cols="30%, 40%, 30%"> <frame name = "left" src = "https://media.geeksforgeeks.org/wp-content/uploads/20190328185307/gfg28.png" scrolling="auto" /> <frame name="middle" src= "https://media.geeksforgeeks.org/wp-content/uploads/20190328185307/gfg28.png" scrolling="yes" /> <frame name="right" src= "https://media.geeksforgeeks.org/wp-content/uploads/20190328185307/gfg28.png" scrolling="no" /> </frameset> </html> Output: Supported Browsers: The browsers supported by HTML <frame> scrolling attribute are listed below: Internet Explorer (before IE 9)FirefoxOpera (upto 12.0) Comment More infoAdvertise with us Next Article HTML | <frame> scrolling Attribute M manaschhabra2 Follow Improve Article Tags : Web Technologies HTML HTML-Attributes Similar Reads HTML | <frame> marginheight Attribute The HTML <frame> marginheight attribute is used to specifies the top and bottom margin of the content in an frame element. Syntax: <frame marginheight="pixels"> Attribute Values: pixels: It contains single value pixels which specifies the top and bottom margin of content in an frame elem 1 min read HTML <iframe> scrolling Attribute 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 larger than the Iframe Element. Note: This attribute has been DEPRECATED and is no longer recommended.Synt 1 min read HTML | <frame> noresize Attribute The HTML <frame> noresize attribute is used to specify that the frame element can not be resize by the user. This type of attribute is used to lock the size of the frame element. Syntax: <frame noresize="noresize"> Attribute Values: noresize: It defines the frame element that can not be 1 min read HTML <frame> marginwidth Attribute The HTML <frame> element's marginwidth attribute defines the horizontal space (in pixels) between the frame's content and its left and right borders. This attribute is deprecated in HTML5, with CSS and <iframe> recommended instead.Syntax<frame marginwidth="pixels">Attribute Valuesp 2 min read HTML | <frameset> cols Attribute The HTML <frameset> cols Attribute is used to specify the size and the number of columns in a frameset. The width of each frame is separated by a comma. Note: It is not supported in HTML5. Syntax: <frameset cols="pixels | % | *"> Attribute Values: pixels: The width of column is set in te 1 min read Like