Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

HTML <iframe> height Attribute

❮ HTML <iframe> tag

Example

An <iframe> with a specified height and width of 200 pixels:

<iframe src="/default.asp" width="200" height="200">
</iframe>
Try it Yourself »

Definition and Usage

The height attribute specifies the height of an <iframe>, in pixels.


Browser Support

Attribute
height Yes Yes Yes Yes Yes

Syntax

<iframe height="pixels">

Attribute Values

Value Description
pixels The height of the inline frame in pixels (e.g. height="100")

❮ HTML <iframe> tag