<frameset>

지원이 중단되었습니다: This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the compatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.

요약

<frameset>은 HTML element로써 <frame> (en-US) element을 포함하고 사용된다.

**참고:**frame의 사용이 지금 <iframe> (en-US)의 사용에 따라줄어드는 추세이기 때문에 , 이 element는 최근 웹사이트에서 잘 쓰이지 않는다.

속성(=Attributes)

다른 모든 HTML elments와 마찬가지로, <frameset> element는 전역속성(global attributes)이 적용된다.

cols

이 속성은 프레임셋안의 가로공간의 갯수와 크기를 정합니다.

rows

이 속성은 프레임셋안의 세로공간의 갯수와 크기를 정합니다.

예시

html
<frameset cols="50%,50%">
  <frame src="https://developer.mozilla.org/en/HTML/Element/frameset" />
  <frame src="https://developer.mozilla.org/en/HTML/Element/frame" />
</frameset>

참조