Open In App

HTML | <iframe> height Attribute

Last Updated : 22 Jul, 2022
Comments
Improve
Suggest changes
Like Article
Like
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>
    
    <iframe src="https://ide.geeksforgeeks.org/index.php"
            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

Next Article

Similar Reads