--- title: ': 인라인 프레임 요소' slug: Web/HTML/Element/iframe tags: - Element - HTML - HTML embedded content - Reference - Web translation_of: Web/HTML/Element/iframe --- {{HTMLRef}} HTML <iframe> 요소는 중첩 {{glossary("browsing context", "브라우징 맥락")}}을 나타내는 요소로, 현재 문서 안에 다른 HTML 페이지를 삽입합니다. {{EmbedInteractiveExample("pages/tabbed/iframe.html", "tabbed-standard")}} The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request. 삽입된 브라우징 맥락은 각자 자신만의 세션 기록과 문서를 가집니다. 다른 브라우징 맥락을 포함하고 있는 맥락은 "부모 브라우징 맥락"이라고 부릅니다. 부모를 가지지 않는, 즉 최상위 브라우징 맥락은 대개 브라우저 창으로서, {{domxref("Window")}} 객체로 나타냅니다. 각각의 브라우징 맥락은 완전한 문서 환경이므로, 페이지에 <iframe>을 추가할 때마다 메모리 및 기타 컴퓨터 자원 사용량이 늘어납니다. 이론상으로는 원하는 만큼 <iframe>을 사용할 수 있지만, 성능 문제가 없는지 확인하세요. 콘텐츠 카테고리 플로우 콘텐츠, 구문 콘텐츠, 내장 콘텐츠, 대화형 콘텐츠, 뚜렷한 콘텐츠. 가능한 콘텐츠 없음. 태그 생략 {{no_tag_omission}} 가능한 부모 요소 내장 콘텐츠를 허용하는 모든 요소. 가능한 ARIA 역할 {{ARIARole("application")}}, {{ARIARole("document")}}, {{ARIARole("img")}} DOM 인터페이스 {{domxref("HTMLIFrameElement")}} 특성 이 요소는 전역 특성을 포함합니다. {{htmlattrdef("allow")}} Specifies a feature policy for the <iframe>. See the article Privacy, permissions, and information security for details on security issues and how <iframe> works with Feature Policy to keep systems safe. {{htmlattrdef("allowfullscreen")}} Set to true if the <iframe> can activate fullscreen mode by calling the {{domxref("Element.requestFullscreen", "requestFullscreen()")}} method. This attribute is considered a legacy attribute and redefined as allow="fullscreen". {{htmlattrdef("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". {{htmlattrdef("csp")}} {{experimental_inline}} A Content Security Policy enforced for the embedded resource. See {{domxref("HTMLIFrameElement.csp")}} for details. {{htmlattrdef("height")}} The height of the frame in CSS pixels. Default is 150. {{htmlattrdef("importance")}} {{experimental_inline}} The download priority of the resource in the <iframe>'s src attribute. Allowed values: auto (default) No preference. The browser uses its own heuristics to decide the priority of the resource. high The resource should be downloaded before other lower-priority page resources. low The resource should be downloaded after other higher-priority page resources. {{htmlattrdef("loading")}} {{experimental_inline}} 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. {{htmlattrdef("name")}} A targetable name for the embedded browsing context. This can be used in the target attribute of the {{HTMLElement("a")}}, {{HTMLElement("form")}}, or {{HTMLElement("base")}} elements; the formtarget attribute of the {{HTMLElement("input")}} or {{HTMLElement("button")}} elements; or the windowName parameter in the {{domxref("Window.open()","window.open()")}} method. {{htmlattrdef("referrerpolicy")}} Indicates which referrer to send when fetching the frame's resource: no-referrer: The {{HTTPHeader("Referer")}} header will not be sent. no-referrer-when-downgrade (default): The {{HTTPHeader("Referer")}} header will not be sent to {{Glossary("origin")}}s without {{Glossary("TLS")}} ({{Glossary("HTTPS")}}). origin: The sent referrer will be limited to the origin of the referring page: its scheme, {{Glossary("host")}}, and {{Glossary("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 {{Glossary("Same-origin policy", "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. {{htmlattrdef("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 {{experimental_inline}}: Allows for downloads to occur without 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 {{Glossary("same-origin policy")}}. allow-scripts: Lets the resource run scripts (but not create popup windows). allow-storage-access-by-user-activation {{experimental_inline}}: 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. {{htmlattrdef("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 {{domxref("Element.removeAttribute()")}}) causes about:blank to be loaded in the frame in Firefox (from version 65), Chromium-based browsers, and Safari/iOS. {{htmlattrdef("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. {{htmlattrdef("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. {{htmlattrdef("align")}} {{deprecated_inline("html4.01")}}, {{obsolete_inline("html5")}} The alignment of this element with respect to the surrounding context. {{htmlattrdef("frameborder")}} {{obsolete_inline("html5")}} 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 {{cssxref("border")}} to control <iframe> borders. {{htmlattrdef("longdesc")}} {{obsolete_inline("html5")}} A URL of a long description of the frame's content. Due to widespread misuse, this is not helpful for non-visual browsers. {{htmlattrdef("marginheight")}} {{obsolete_inline("html5")}} The amount of space in pixels between the frame's content and its top and bottom borders. {{htmlattrdef("marginwidth")}} {{obsolete_inline("html5")}} The amount of space in pixels between the frame's content and its left and right borders. {{htmlattrdef("scrolling")}} {{obsolete_inline("html5")}} 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 {{non-standard_inline}} {{htmlattrdef("mozbrowser")}} {{non-standard_inline}} 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. 스크립팅 Inline frames, like {{HTMLElement("frame")}} elements, are included in the {{domxref("window.frames")}} pseudo-array. With the DOM {{domxref("HTMLIFrameElement")}} object, scripts can access the {{domxref("window")}} object of the framed resource via the {{domxref("HTMLIFrameElement.contentWindow", "contentWindow")}} property. The {{domxref("HTMLIFrameElement.contentDocument", "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 {{domxref("window.parent")}}. Script access to a frame's content is subject to the {{Glossary("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 {{domxref("Window.postMessage()")}}. 예제 간단한 프레임 An <iframe> in action. After creating the frame, when the user clicks a button, its title is displayed in an alert. <iframe src="https://mdn-samples.mozilla.org/snippets/html/iframe-simple-contents.html" title="iframe Example 1" width="400" height="300"> </iframe> Result {{ EmbedLiveSample('간단한_프레임', 640,400)}} 프레임 안의 링크를 다른 탭에서 열기 <iframe id="Example2" title="iframe Example 2" width="400" height="300" style="border:none" src="https://maps.google.com/maps?f=q&source=s_q&q=buenos+aires&sll=37.0625,-95.677068&sspn=38.638819,80.859375&t=h&hnear=Buenos+Aires,+Argentina&z=11&ll=-34.603723,-58.381593&output=embed"> </iframe> 결과 {{ EmbedLiveSample('프레임_안의_링크를_다른_탭에서_열기', 640, 400)}} 명세 명세 상태 주석 {{SpecName('HTML WHATWG', 'the-iframe-element.html#the-iframe-element', '<iframe>')}} {{Spec2('HTML WHATWG')}} {{SpecName('HTML5 W3C', 'embedded-content-0.html#the-iframe-element', '<iframe>')}} {{Spec2('HTML5 W3C')}} {{SpecName('HTML4.01', 'present/frames.html#h-16.5', '<iframe>')}} {{Spec2('HTML4.01')}} 브라우저 호환성 {{Compat("html.elements.iframe", 3)}}
HTML <iframe> 요소는 중첩 {{glossary("browsing context", "브라우징 맥락")}}을 나타내는 요소로, 현재 문서 안에 다른 HTML 페이지를 삽입합니다.
<iframe>
삽입된 브라우징 맥락은 각자 자신만의 세션 기록과 문서를 가집니다. 다른 브라우징 맥락을 포함하고 있는 맥락은 "부모 브라우징 맥락"이라고 부릅니다. 부모를 가지지 않는, 즉 최상위 브라우징 맥락은 대개 브라우저 창으로서, {{domxref("Window")}} 객체로 나타냅니다.
각각의 브라우징 맥락은 완전한 문서 환경이므로, 페이지에 <iframe>을 추가할 때마다 메모리 및 기타 컴퓨터 자원 사용량이 늘어납니다. 이론상으로는 원하는 만큼 <iframe>을 사용할 수 있지만, 성능 문제가 없는지 확인하세요.
이 요소는 전역 특성을 포함합니다.
true
allow="fullscreen"
allow="payment"
150
src
auto
high
low
eager
lazy
target
formtarget
windowName
no-referrer
no-referrer-when-downgrade
origin
origin-when-cross-origin
same-origin
strict-origin
strict-origin-when-cross-origin
unsafe-url
allow-downloads-without-user-activation
allow-forms
allow-modals
allow-orientation-lock
allow-pointer-lock
allow-popups
window.open()
target="_blank"
showModalDialog()
allow-popups-to-escape-sandbox
allow-presentation
allow-same-origin
allow-scripts
allow-storage-access-by-user-activation
allow-top-navigation
_top
allow-top-navigation-by-user-activation
sandbox
iframe
about:blank
srcdoc
300
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.
1
0
yes
no
Inline frames, like {{HTMLElement("frame")}} elements, are included in the {{domxref("window.frames")}} pseudo-array.
With the DOM {{domxref("HTMLIFrameElement")}} object, scripts can access the {{domxref("window")}} object of the framed resource via the {{domxref("HTMLIFrameElement.contentWindow", "contentWindow")}} property. The {{domxref("HTMLIFrameElement.contentDocument", "contentDocument")}} property refers to the document inside the <iframe>, same as contentWindow.document.
document
contentWindow.document
From the inside of a frame, a script can get a reference to its parent window with {{domxref("window.parent")}}.
Script access to a frame's content is subject to the {{Glossary("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 {{domxref("Window.postMessage()")}}.
window
An <iframe> in action. After creating the frame, when the user clicks a button, its title is displayed in an alert.
<iframe src="https://mdn-samples.mozilla.org/snippets/html/iframe-simple-contents.html" title="iframe Example 1" width="400" height="300"> </iframe>
{{ EmbedLiveSample('간단한_프레임', 640,400)}}
<iframe id="Example2" title="iframe Example 2" width="400" height="300" style="border:none" src="https://maps.google.com/maps?f=q&source=s_q&q=buenos+aires&sll=37.0625,-95.677068&sspn=38.638819,80.859375&t=h&hnear=Buenos+Aires,+Argentina&z=11&ll=-34.603723,-58.381593&output=embed"> </iframe>
{{ EmbedLiveSample('프레임_안의_링크를_다른_탭에서_열기', 640, 400)}}
{{Compat("html.elements.iframe", 3)}}