Open In App

HTML | <iframe> marginwidth Attribute

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

The HTML <iframe> margin width Attribute is used to specifies the left and right margin of the content in an Iframe Element.

Syntax:

<iframe marginwidth="pixels">

Attribute Values:

  • pixels: It contains the value i.e pixel which specifies the right and left a margin of the content in an Iframe Element.

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




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


Output:

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

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

Last Updated : 07 Nov, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads