blob: 92e3959ece7eb5fcef570eb5f18665113133f392 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
---
title: Window.outerWidth
slug: Web/API/Window/outerWidth
translation_of: Web/API/Window/outerWidth
---
<div>{{APIRef}}</div>
<h2 id="Summary" name="Summary">요약</h2>
<p>Window.outerWidth 는 브라우저 윈도우 바깥쪽의 폭을 얻어온다. 이것은 브라우저 윈도우의 사이드바와 가장자리 경계선을 포함한 폭을 나타내어 준다.</p>
<p>이 값은 읽기전용이다. 그리고 기본값이 없다.</p>
<h2 id="Syntax" name="Syntax">문법</h2>
<pre class="syntaxbox"><var>outWindowWidth</var> = window.outerWidth;
</pre>
<p>반환이 끝나면 outWindowWidth는 윈도우의 바깥경계를 포함한 너비(폭)를 담고 있다.</p>
<h2 id="Notes" name="Notes">노트</h2>
<p>이 사이즈를 변경하기 위해서는, {{domxref("window.resizeBy()")}} 또는 {{domxref("window.resizeTo()")}}를 참조하세요.</p>
<p>윈도우의 안쪽 폭 즉, 현재 표시되고있는 창의 폭을 얻으려면 {{domxref("window.innerWidth")}}를 참조하세요.</p>
<h2 id="브라우저_호환성">브라우저 호환성</h2>
<p>{{Compat("api.Window.outerWidth")}}</p>
<h2 id="Specification" name="Specification">Specification</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{ SpecName('CSSOM View', '#dom-window-outerwidth', 'Window.outerWidth') }}</td>
<td>{{ Spec2('CSSOM View') }}</td>
<td> </td>
</tr>
</tbody>
</table>
<h2 id="See_also">See also</h2>
<ul>
<li>{{domxref("window.outerHeight")}}, {{domxref("window.innerHeight")}}, {{domxref("window.innerWidth")}}</li>
<li>{{domxref("window.resizeBy()")}}, {{domxref("window.resizeTo()")}}</li>
</ul>
|