Open In App

HTML | <iframe> marginwidth Attribute

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:

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:

Article Tags :