blob: a65b4a20d76064359e3efc669b958e58ca0c09c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
---
title: <frameset>
slug: Web/HTML/Element/frameset
translation_of: Web/HTML/Element/frameset
---
<div>{{Deprecated_header}}</div>
<h2 id="요약">요약</h2>
<p><code><frameset></code>은 HTML element로써 {{HTMLElement("frame")}} element을 포함하고 사용된다.</p>
<p class="note"><strong>Note: </strong>frame의 사용이 지금 {{HTMLElement("iframe")}}의 사용에 따라줄어드는 추세이기 때문에 , 이 element는 최근 웹사이트에서 잘 쓰이지 않는다.</p>
<h2 id="속성(Attributes)">속성(=Attributes)</h2>
<p>다른 모든 HTML elments와 마찬가지로, <frameset> element는 전역속성(<a href="/en-US/HTML/Global_attributes" title="HTML/Global attributes">global attributes</a>)이 적용된다.</p>
<dl>
<dt>{{htmlattrdef("cols")}}</dt>
<dd>이 속성은 프레임셋안의 가로공간의 갯수와 크기를 정합니다.</dd>
<dt>{{htmlattrdef("rows")}}</dt>
<dd>이 속성은 프레임셋안의 세로공간의 갯수와 크기를 정합니다.</dd>
</dl>
<h2 id="예시">예시</h2>
<pre class="brush: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></pre>
<h2 id="참조">참조</h2>
<ul>
<li>{{HTMLElement("frame")}}</li>
<li>{{HTMLElement("iframe")}}</li>
</ul>
<p>{{HTMLRef}}</p>
|