Open In App

HTML | <iframe> height Attribute

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: 




<!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:

Article Tags :