Open In App

HTML | <iframe> marginheight Attribute

Last Updated : 07 Nov, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

The HTML <iframe> marginheight Attribute is used to specify a top and bottom margin of the content in an Iframe Element.

Syntax:

<iframe marginheight="pixels">

Attribute Values:

  • pixels: It contains the value i.e pixel which specify the top and bottom margin of the content in an Iframe Element.

Note: This attribute is not supported in HTML 5, as replacement you can use CSS.
Below example illustrate the <iframe> marginheight Attribute:
Example:




<!DOCTYPE html>
<html>
<head>
    <title>
     HTML <iframe> marginheight Attribute
    </title>
</head>
<body>
    <center>
        <h1 style="color:green;">
        GeeksforGeeks
        </h1>
        <h2>
        HTML Iframe marginheight Attribute
    </h2>
  
        <p>Content goes here</p>
  
        <iframe src=
                height="200" 
                width="400" 
                marginheight="80">
        </iframe>
    </center>
  
</body>
  
</html>


Output:

Supported Browsers: The browsers supported by HTML <iframe> marginheight Attribute are listed below:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Opera
  • Safari

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads