Open In App

HTML | <iframe> width Attribute

Last Updated : 22 Jul, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The HTML <iframe> width attribute is used to specify the width of the <iframe> in terms of pixels. 

Syntax: 

<iframe width="pixels">

Attribute Values: It contains single value pixel which specifies the width of the iframes in terms of pixels. 

Below example illustrates the use of <iframe> width attribute in HTML: 

Example: 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML iframe width Attribute
    </title>
</head>
 
<body style="text-align:center;">
      
    <h1 style="color:green;">
        GeeksforGeeks
    </h1>
     
    <h2>
        HTML iframe width Attribute
    </h2>
     
            height="250" width="400"></iframe>
</body>
 
</html>                   


Output:

  

Supported Browsers: The browser supported by HTML iframe width attribute are listed below:

  • Google Chrome 1 and above
  • Edge 12 and above
  • Internet Explorer
  • Firefox
  • Safari
  • Opera

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

Similar Reads