Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

이 문서는 아직 자원 봉사자들이 한국어로 번역하지 않았습니다. 함께 해서 번역을 마치도록 도와 주세요!

Summary

<noframes> is an HTML element which is used to supporting browsers which are not able to support <frame> elements or configured to do so.

You can use any HTML element inside of <noframes> which are expected to be seen inside of <body> element, except <frameset> and <frame> elements.

Note: Because of the fact that all mainstream browsers support frames, usage of this element is not necessary in general cases. It is also entirely obsolete in HTML5 and should be avoided to conform to the standard.

Attributes

Like all other HTML elements, this element supports the global attributes.

Example

<frameset cols="50%,50%">
  <frame src="https://developer.mozilla.org/en/HTML/Element/frameset" />
  <frame src="https://developer.mozilla.org/en/HTML/Element/frame" />
  <noframes><p>It seems your browser does not support frames or configured to does not so.</p></noframes>
</frameset>

See also

문서 태그 및 공헌자

 이 페이지의 공헌자: kscarfone, tregagnon, teoli, Sheppy, m_gol, allergic, ethertank, avsaro
 최종 변경: kscarfone,