Advertisement
Home Open Editor ❯

HTML <iframe> height Attribute

Example

<iframe src="demo.html" height="500" width="400">
  Your browser does not support iframe element.
</iframe>

Try this code ❯

Meaning

The height attribute specifies the height of the iframe.

By default height of the <iframe> is 150 pixels.


Standard Syntax

<iframe height="pixels">


Advertisement

Attribute Values

Value Description
pixels Specifies the height of inline frame
Home Open Editor ❯
Advertisement