HTML | <frame> marginheight Attribute Last Updated : 30 Sep, 2019 Summarize Comments Improve Suggest changes Share Like Article Like Report 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 element. Note: This attribute is not supported by HTML 5. CSS property is used instead of this attribute. Below example illustrates the <frame> marginheight attribute in HTML: Example: html <!DOCTYPE html> <html> <head> <title> HTML frame marginheight Attribute </title> </head> <frameset cols="30%, 40%, 30%"> <frame name="left" src= "https://media.geeksforgeeks.org/wp-content/uploads/20190401113144/gfg_200X2001.png" marginheight ="40" /> <frame name="main" src= "https://media.geeksforgeeks.org/wp-content/uploads/20190328185307/gfg28.png" marginheight="30" /> <frame name="bottom" src= "https://media.geeksforgeeks.org/wp-content/uploads/20190807114330/GFG115.png" marginheight ="40" /> </frameset> </html> Output: Supported Browsers: The browsers supported by HTML <frame> marginheight attribute are listed below: Google Chrome Internet Explorer Firefox Safari Opera Comment More infoAdvertise with us Next Article HTML marginheight Attribute M manaschhabra2 Follow Improve Article Tags : Web Technologies HTML HTML-Attributes Similar Reads 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 <iframe> marginheight Attribute The HTML <iframe> marginheight attribute specifies the vertical margin space, in pixels, between the iframe's content and its top and bottom borders. Syntax<iframe marginheight="pixels">Attribute Valuespixels: It contains the value i.e. pixel which specifies the top and bottom margin of 2 min read HTML | <frame> scrolling Attribute 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 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 <iframe> marginwidth Attribute The HTML <iframe> marginwidth attribute defines the horizontal margin space, in pixels, between the iframe's content and its left and right borders. Syntax<iframe marginwidth="pixels">Attribute Values:pixels: It contains the value i.e. pixel which specifies the right and left margin of t 2 min read HTML | <embed> width Attribute The HTML embed width attribute is used to specify the width of the embedded content. Syntax: <embed width="pixels"> Attribute Values: pixels: The width of embed value are set in terms of pixels. It is used to specify the width of embedded content. Example: html <!DOCTYPE html> <html 1 min read Like