Web/HTML/Element/iframe

From Get docs


The HTML Inline Frame element (<iframe>) represents a nested browsing context, embedding another HTML page into the current one.


Each embedded browsing context has its own session history and document. The browsing context that embeds the others is called the parent browsing context. The topmost browsing context — the one with no parent — is usually the browser window, represented by the Window object.

Because each browsing context is a complete document environment, every <iframe> in a page requires increased memory and other computing resources. While theoretically you can use as many <iframe>s as you like, check for performance problems.


Content categories Flow content, phrasing content, embedded content, interactive content, palpable content.
Permitted content None.
Tag omission None, both the starting and ending tag are mandatory.
Permitted parents Any element that accepts embedded content.
Implicit ARIA role No corresponding role
Permitted ARIA roles application, document, img, none, presentation
DOM interface HTMLIFrameElement

Attributes

This element includes the global attributes.

allow
Specifies a feature policy for the <iframe>. The policy defines what features are available to the <iframe> based on the origin of the request (e.g. access to the microphone, camera, battery, web-share API, etc.). For more information and examples see: Using Feature Policy > The iframe allow attribute.
allowfullscreen
Set to true if the <iframe> can activate fullscreen mode by calling the requestFullscreen() method.

This attribute is considered a legacy attribute and redefined as allow="fullscreen".

allowpaymentrequest
Set to true if a cross-origin <iframe> should be allowed to invoke the Payment Request API.

This attribute is considered a legacy attribute and redefined as allow="payment".

csp '
A Content Security Policy enforced for the embedded resource. See HTMLIFrameElement.csp for details.
height
The height of the frame in CSS pixels. Default is 150.
loading '
Indicates how the browser should load the iframe:
  • eager: Load the iframe immediately, regardless if it is outside the visible viewport (this is the default value).
  • lazy: Defer loading of the iframe until it reaches a calculated distance from the viewport, as defined by the browser.
name
A targetable name for the embedded browsing context. This can be used in the target attribute of the <a>, <form>, or <base> elements; the formtarget attribute of the <input> or <button> elements; or the windowName parameter in the window.open() method.
referrerpolicy
Indicates which referrer to send when fetching the frame's resource:
  • no-referrer: The Referer header will not be sent.
  • no-referrer-when-downgrade (default): The Referer header will not be sent to origins without TLS (HTTPS).
  • origin: The sent referrer will be limited to the origin of the referring page: its scheme, host, and port.
  • origin-when-cross-origin: The referrer sent to other origins will be limited to the scheme, the host, and the port. Navigations on the same origin will still include the path.
  • same-origin: A referrer will be sent for same origin, but cross-origin requests will contain no referrer information.
  • strict-origin: Only send the origin of the document as the referrer when the protocol security level stays the same (HTTPS→HTTPS), but don't send it to a less secure destination (HTTPS→HTTP).
  • strict-origin-when-cross-origin: Send a full URL when performing a same-origin request, only send the origin when the protocol security level stays the same (HTTPS→HTTPS), and send no header to a less secure destination (HTTPS→HTTP).
  • unsafe-url: The referrer will include the origin and the path (but not the fragment, password, or username). This value is unsafe, because it leaks origins and paths from TLS-protected resources to insecure origins.
sandbox
Applies extra restrictions to the content in the frame. The value of the attribute can either be empty to apply all restrictions, or space-separated tokens to lift particular restrictions:
  • allow-downloads-without-user-activation ' : Allows for downloads to occur without a gesture from the user.
  • allow-downloads: Allows for downloads to occur with a gesture from the user.
  • allow-forms: Allows the resource to submit forms. If this keyword is not used, form submission is blocked.
  • allow-modals: Lets the resource open modal windows.
  • allow-orientation-lock: Lets the resource lock the screen orientation.
  • allow-pointer-lock: Lets the resource use the Pointer Lock API.
  • allow-popups: Allows popups (such as window.open(), target="_blank", or showModalDialog()). If this keyword is not used, the popup will silently fail to open.
  • allow-popups-to-escape-sandbox: Lets the sandboxed document open new windows without those windows inheriting the sandboxing. For example, this can safely sandbox an advertisement without forcing the same restrictions upon the page the ad links to.
  • allow-presentation: Lets the resource start a presentation session.
  • allow-same-origin: If this token is not used, the resource is treated as being from a special origin that always fails the same-origin policy.
  • allow-scripts: Lets the resource run scripts (but not create popup windows).
  • allow-storage-access-by-user-activation ' : Lets the resource request access to the parent's storage capabilities with the Storage Access API.
  • allow-top-navigation: Lets the resource navigate the top-level browsing context (the one named _top).
  • allow-top-navigation-by-user-activation: Lets the resource navigate the top-level browsing context, but only if initiated by a user gesture.

Notes about sandboxing:

  • When the embedded document has the same origin as the embedding page, it is strongly discouraged to use both allow-scripts and allow-same-origin, as that lets the embedded document remove the sandbox attribute — making it no more secure than not using the sandbox attribute at all.
  • Sandboxing is useless if the attacker can display content outside a sandboxed iframe — such as if the viewer opens the frame in a new tab. Such content should be also served from a separate origin to limit potential damage.
  • The sandbox attribute is unsupported in Internet Explorer 9 and earlier.


src
The URL of the page to embed. Use a value of about:blank to embed an empty page that conforms to the same-origin policy. Also note that programatically removing an <iframe>'s src attribute (e.g. via Element.removeAttribute()) causes about:blank to be loaded in the frame in Firefox (from version 65), Chromium-based browsers, and Safari/iOS.
srcdoc
Inline HTML to embed, overriding the src attribute. If a browser does not support the srcdoc attribute, it will fall back to the URL in the src attribute.
width
The width of the frame in CSS pixels. Default is 300.

Deprecated attributes

These attributes are deprecated and may no longer be supported by all user agents. You should not use them in new content, and try to remove them from existing content.

align '
The alignment of this element with respect to the surrounding context.
frameborder '
The value 1 (the default) draws a border around this frame. The value 0 removes the border around this frame, but you should instead use the CSS property border to control <iframe> borders.
longdesc '
A URL of a long description of the frame's content. Due to widespread misuse, this is not helpful for non-visual browsers.
marginheight '
The amount of space in pixels between the frame's content and its top and bottom borders.
marginwidth '
The amount of space in pixels between the frame's content and its left and right borders.
scrolling '
Indicates when the browser should provide a scrollbar for the frame:
auto
  • Only when the frame's content is larger than its dimensions.
  • yes: Always show a scrollbar.
  • no: Never show a scrollbar.

Non-standard attributes

mozbrowser '

See bug 1318532 for exposing this to WebExtensions in Firefox.

Makes the <iframe> act like a top-level browser window. See Browser API for details.

Available only to WebExtensions.

Scripting

Inline frames, like <frame> elements, are included in the window.frames pseudo-array.

With the DOM HTMLIFrameElement object, scripts can access the window object of the framed resource via the contentWindow property. The contentDocument property refers to the document inside the <iframe>, same as contentWindow.document.

From the inside of a frame, a script can get a reference to its parent window with window.parent.

Script access to a frame's content is subject to the same-origin policy. Scripts cannot access most properties in other window objects if the script was loaded from a different origin, including scripts inside a frame accessing the frame's parent. Cross-origin communication can be achieved using Window.postMessage().

Positioning and scaling

As a replaced element, the position, alignment, and scaling of the embedded document within the <iframe> element's box, can be adjusted with the object-position and object-fit properties.

Examples

A simple <iframe>

An <iframe> in action. After creating the frame, when the user clicks a button, its title is displayed in an alert.

HTML

<iframe src="https://mdn-samples.mozilla.org/snippets/html/iframe-simple-contents.html"
            title="iframe Example 1" width="400" height="300">
</iframe>

Result

Accessibility concerns

People navigating with assistive technology such as a screen reader can use the title attribute on an <iframe> to label its content. The title's value should concisely describe the embedded content:

<iframe title="Wikipedia page for Avocados" src="https://en.wikipedia.org/wiki/Avocado"></iframe>

Without this title, they have to navigate into the <iframe> to determine what its embedded content is. This context shift can be confusing and time-consuming, especially for pages with multiple <iframe>s and/or if embeds contain interactive content like video or audio.

Specifications

Specification Status Comment
Referrer PolicyThe definition of 'referrerpolicy attribute' in that specification. Candidate Recommendation Added the referrerpolicy attribute.
HTML Living StandardThe definition of '<iframe>' in that specification. Living Standard
HTML5The definition of '<iframe>' in that specification. Recommendation
HTML 4.01 SpecificationThe definition of '<iframe>' in that specification. Recommendation
Screen Orientation API Working Draft Adds allow-orientation-lock to the sandbox attribute.

Browser compatibility

Update compatibility data on GitHub

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
iframe Chrome

Full support 1

Edge

Full support 12

Firefox Full support Yes

Notes'

Full support Yes

Notes'

Notes' The resize CSS property doesn't have any effect on this element due to bug 680823.

IE

Full support Yes

Opera

Full support Yes

Safari Full support Yes

Notes'

Full support Yes

Notes'

Notes' Safari has a bug that prevents iframes from loading if the iframe element was hidden when added to the page. iframeElement.src = iframeElement.src should cause it to load the iframe.

WebView Android

Full support Yes

Chrome Android

Full support Yes

Firefox Android Full support Yes

Notes'

Full support Yes

Notes'

Notes' The resize CSS property doesn't have any effect on this element due to bug 680823.

Opera Android

Full support Yes

Safari iOS Full support Yes

Notes'

Full support Yes

Notes'

Notes' Safari has a bug that prevents iframes from loading if the iframe element was hidden when added to the page. iframeElement.src = iframeElement.src should cause it to load the iframe.

Samsung Internet Android

Full support Yes

align

Deprecated'

Chrome

Full support 1

Edge

Full support 12

Firefox

Full support Yes

IE

Full support Yes

Opera

Full support Yes

Safari

Full support Yes

WebView Android

Full support Yes

Chrome Android

Full support Yes

Firefox Android

Full support Yes

Opera Android

Full support Yes

Safari iOS

Full support Yes

Samsung Internet Android

Full support Yes

allow

Experimental'

Chrome

Full support 60

Edge

Full support 79

Firefox

Full support 74

IE

No support No

Opera

Full support 47

Safari

Full support 11.1

WebView Android

Full support 60

Chrome Android

Full support 60

Firefox Android

No support No

Opera Android

Full support 44

Safari iOS

Full support 11.3

Samsung Internet Android

Full support 8.0

allowfullscreen

Chrome Full support 27


Full support 27


No support 17 — 38

Prefixed'

Prefixed' Implemented with the vendor prefix: webkit

Edge Full support ≤79


Full support ≤79


No support 12 — 79

Prefixed'

Prefixed' Implemented with the vendor prefix: ms

Firefox Full support 18


Full support 18


Full support 9

Prefixed'

Prefixed' Implemented with the vendor prefix: moz

IE Full support 11

Prefixed'

Full support 11

Prefixed'

Prefixed' Implemented with the vendor prefix: ms

Opera Full support ≤15


Full support ≤15


No support 15 — 25

Prefixed'

Prefixed' Implemented with the vendor prefix: webkit

Safari Full support 7


Full support 7


Full support Yes

Prefixed'

Prefixed' Implemented with the vendor prefix: webkit

WebView Android Full support 37


Full support 37


No support 37 — 38

Prefixed'

Prefixed' Implemented with the vendor prefix: webkit

Chrome Android Full support 27


Full support 27


No support 18 — 38

Prefixed'

Prefixed' Implemented with the vendor prefix: webkit

Firefox Android Full support 18


Full support 18


Full support 9

Prefixed'

Prefixed' Implemented with the vendor prefix: moz

Opera Android Full support ≤14


Full support ≤14


No support 14 — 25

Prefixed'

Prefixed' Implemented with the vendor prefix: webkit

Safari iOS Full support 7


Full support 7


Full support Yes

Prefixed'

Prefixed' Implemented with the vendor prefix: webkit

Samsung Internet Android Full support 1.5


Full support 1.5


No support 1.0 — 3.0

Prefixed'

Prefixed' Implemented with the vendor prefix: webkit

allowpaymentrequest

Experimental'

Chrome

No support No

Edge

No support No

Firefox

No support No

IE

No support No

Opera

No support No

Safari

No support No

WebView Android

No support No

Chrome Android

No support No

Firefox Android

No support No

Opera Android

No support No

Safari iOS

No support No

Samsung Internet Android

No support No

Aspect ratio computed from width and height attributes Chrome

Full support 79

Edge

Full support 79

Firefox Full support 71


Full support 71


No support 69 — 71

Disabled'

Disabled' From version 69 until version 71 (exclusive): this feature is behind the layout.css.width-and-height-map-to-aspect-ratio.enabled preference (needs to be set to true). To change preferences in Firefox, visit about:config.

IE

No support No

Opera

Full support 66

Safari

Full support 14

WebView Android

Full support 79

Chrome Android

Full support 79

Firefox Android

Full support 79

Opera Android

Full support 57

Safari iOS

Full support 14

Samsung Internet Android

Full support 12.0

External protocol URLs blocked

Deprecated'

Chrome

?

Edge

?

Firefox

Full support 67

IE

?

Opera

?

Safari

?

WebView Android

?

Chrome Android

?

Firefox Android

Full support 67

Opera Android

?

Safari iOS

?

Samsung Internet Android

?

frameborder

Deprecated'

Chrome

Full support 1

Edge

Full support 12

Firefox

Full support Yes

IE

Full support Yes

Opera

Full support Yes

Safari

Full support Yes

WebView Android

Full support Yes

Chrome Android

Full support Yes

Firefox Android

Full support Yes

Opera Android

Full support Yes

Safari iOS

Full support Yes

Samsung Internet Android

Full support Yes

height Chrome

Full support 1

Edge

Full support 12

Firefox

Full support Yes

IE

Full support Yes

Opera

Full support Yes

Safari

Full support Yes

WebView Android

Full support Yes

Chrome Android

Full support Yes

Firefox Android

Full support Yes

Opera Android

Full support Yes

Safari iOS

Full support Yes

Samsung Internet Android

Full support Yes

loading

Experimental'

Chrome

Full support 76

Edge

Full support 79

Firefox

No support No

IE

No support No

Opera

Full support 63

Safari No support No

Notes'

No support No

Notes'

Notes' See bug 196698

WebView Android

No support No

Chrome Android

Full support 76

Firefox Android

No support No

Opera Android

Full support 54

Safari iOS No support No

Notes'

No support No

Notes'

Notes' See bug 196698

Samsung Internet Android

No support No

longdesc

Deprecated'

Chrome

Full support 1

Edge

Full support 12

Firefox

Full support Yes

IE

Full support Yes

Opera

Full support Yes

Safari

Full support Yes

WebView Android

Full support Yes

Chrome Android

Full support Yes

Firefox Android

Full support Yes

Opera Android

Full support Yes

Safari iOS

Full support Yes

Samsung Internet Android

Full support Yes

marginheight

Deprecated'

Chrome

Full support 1

Edge

Full support 12

Firefox

Full support Yes

IE

Full support Yes

Opera

Full support Yes

Safari

Full support Yes

WebView Android

Full support Yes

Chrome Android

Full support Yes

Firefox Android

Full support Yes

Opera Android

Full support Yes

Safari iOS

Full support Yes

Samsung Internet Android

Full support Yes

marginwidth

Deprecated'

Chrome

Full support 1

Edge

Full support 12

Firefox

Full support Yes

IE

Full support Yes

Opera

Full support Yes

Safari

Full support Yes

WebView Android

Full support Yes

Chrome Android

Full support Yes

Firefox Android

Full support Yes

Opera Android

Full support Yes

Safari iOS

Full support Yes

Samsung Internet Android

Full support Yes

name Chrome

Full support 1

Edge

Full support 12

Firefox

Full support Yes

IE

Full support Yes

Opera

Full support Yes

Safari

Full support Yes

WebView Android

Full support Yes

Chrome Android

Full support Yes

Firefox Android

Full support Yes

Opera Android

Full support Yes

Safari iOS

Full support Yes

Samsung Internet Android

Full support Yes

referrerpolicy Chrome

Full support 51

Edge

Full support 79

Firefox

Full support 50

IE

No support No

Opera

Full support 38

Safari

Full support 11.1

WebView Android

Full support 51

Chrome Android

Full support 51

Firefox Android

Full support 50

Opera Android

Full support 41

Safari iOS

No support No

Samsung Internet Android

Full support 7.2

sandbox Chrome

Full support 4

Edge

Full support 12

Firefox

Full support 17

IE

Full support 10

Opera

Full support 15

Safari

Full support 5

WebView Android

Full support Yes

Chrome Android

Full support Yes

Firefox Android

Full support 17

Opera Android

?

Safari iOS

Full support 4.2

Samsung Internet Android

Full support Yes

sandbox="allow-downloads" Chrome

Full support 83

Edge

Full support 83

Firefox

Full support 82

IE

No support No

Opera

?

Safari

No support No

WebView Android

Full support 83

Chrome Android

Full support 83

Firefox Android

Full support 82

Opera Android

?

Safari iOS

No support No

Samsung Internet Android

?

sandbox="allow-modals" Chrome

?

Edge

?

Firefox

Full support 49

IE

No support No

Opera

?

Safari

?

WebView Android

?

Chrome Android

?

Firefox Android

Full support 49

Opera Android

?

Safari iOS

?

Samsung Internet Android

?

sandbox="allow-popups" Chrome

Full support Yes

Edge

Full support ≤18

Firefox

Full support 28

IE

?

Opera

Full support Yes

Safari

?

WebView Android

Full support Yes

Chrome Android

Full support Yes

Firefox Android

Full support 27

Opera Android

?

Safari iOS

?

Samsung Internet Android

Full support Yes

sandbox="allow-popups-to-escape-sandbox" Chrome

Full support 46

Edge

Full support 79

Firefox

Full support 49

IE

No support No

Opera

Full support 32

Safari

?

WebView Android

Full support 46

Chrome Android

Full support 46

Firefox Android

Full support 49

Opera Android

Full support 32

Safari iOS

?

Samsung Internet Android

Full support 5.0

sandbox="allow-presentation" Chrome

Full support 53

Edge

Full support 79

Firefox

Full support 50

IE

No support No

Opera

Full support 40

Safari

?

WebView Android

No support No

Chrome Android

Full support 53

Firefox Android

Full support 50

Opera Android

Full support 41

Safari iOS

?

Samsung Internet Android

Full support 6.0

sandbox="allow-storage-access-by-user-activation"

Experimental'Non-standard'

Chrome

No support No

Edge

No support No

Firefox Full support 65

Disabled'

Full support 65

Disabled'

Disabled' From version 65: this feature is behind the dom.storage_access.enabled preference (needs to be set to true). To change preferences in Firefox, visit about:config.

IE

No support No

Opera

No support No

Safari

Full support 11.1

WebView Android

No support No

Chrome Android

No support No

Firefox Android Full support 65

Disabled'

Full support 65

Disabled'

Disabled' From version 65: this feature is behind the dom.storage_access.enabled preference (needs to be set to true). To change preferences in Firefox, visit about:config.

Opera Android

No support No

Safari iOS

Full support 11.3

Samsung Internet Android

No support No

sandbox="allow-top-navigation-by-user-activation" Chrome

Full support 58

Edge

Full support 79

Firefox

Full support 79

IE

No support No

Opera

Full support 45

Safari Full support 11.1

Notes'

Full support 11.1

Notes'

Notes' Not initially available in 11.1, but added in sub-version 13605.1.33.1.2.

WebView Android

Full support 58

Chrome Android

Full support 58

Firefox Android

Full support 79

Opera Android

Full support 43

Safari iOS

?

Samsung Internet Android

Full support 7.0

scrolling

Deprecated'

Chrome

Full support 1

Edge

Full support 12

Firefox

Full support Yes

IE

Full support Yes

Opera

Full support Yes

Safari

Full support Yes

WebView Android

Full support Yes

Chrome Android

Full support Yes

Firefox Android

Full support Yes

Opera Android

Full support Yes

Safari iOS

Full support Yes

Samsung Internet Android

Full support Yes

src Chrome

Full support 1

Edge

Full support 12

Firefox

Full support Yes

IE

Full support Yes

Opera

Full support Yes

Safari

Full support Yes

WebView Android

Full support Yes

Chrome Android

Full support Yes

Firefox Android

Full support Yes

Opera Android

Full support Yes

Safari iOS

Full support Yes

Samsung Internet Android

Full support Yes

srcdoc Chrome

Full support 20

Edge

Full support 79

Firefox

Full support 25

IE

No support No

Opera

Full support 15

Safari

Full support 6

WebView Android

Full support 37

Chrome Android

Full support 25

Firefox Android

Full support 25

Opera Android

?

Safari iOS

?

Samsung Internet Android

Full support 1.5

width Chrome

Full support 1

Edge

Full support 12

Firefox

Full support Yes

IE

Full support Yes

Opera

Full support Yes

Safari

Full support Yes

WebView Android

Full support Yes

Chrome Android

Full support Yes

Firefox Android

Full support Yes

Opera Android

Full support Yes

Safari iOS

Full support Yes

Samsung Internet Android

Full support Yes

Legend

Full support  
Full support
No support  
No support
Compatibility unknown  
Compatibility unknown
Experimental. Expect behavior to change in the future.'
Experimental. Expect behavior to change in the future.
Non-standard. Expect poor cross-browser support.'
Non-standard. Expect poor cross-browser support.
Deprecated. Not for use in new websites.'
Deprecated. Not for use in new websites.
See implementation notes.'
See implementation notes.
User must explicitly enable this feature.'
User must explicitly enable this feature.
Requires a vendor prefix or different name for use.'
Requires a vendor prefix or different name for use.


See also