Advertisement
Home Open Editor ❯

HTML <iframe> width Attribute

Example

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

Try this code ❯

Meaning

The width attribute specifies the width of the iframe.

By default width of the <iframe> is 300 pixels.


Standard Syntax

<iframe width="pixels">


Advertisement

Attribute Values

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