Open In App

HTML | <iframe> height Attribute

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

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

Syntax: 

<iframe height="pixels">

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

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

Example: 

html




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


Output:

  

Supported Browsers: The browser supported by HTML iframe height 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