aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/api/window/outerwidth/index.html
blob: 272c415bb7ec20f4e69eadf8104a0c2ee007f361 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
---
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>

<div>{{CompatibilityTable}}</div>

<div id="compat-desktop">
<table class="compat-table">
 <tbody>
  <tr>
   <th>Feature</th>
   <th>크롬</th>
   <th>파이어폭스 (Gecko)</th>
   <th>인터넷 익스플로러</th>
   <th>오페라</th>
   <th>사파리</th>
  </tr>
  <tr>
   <td>기초 지원</td>
   <td>1</td>
   <td>{{CompatGeckoDesktop(1.0)}}</td>
   <td>9</td>
   <td>9</td>
   <td>3</td>
  </tr>
 </tbody>
</table>
</div>

<div id="compat-mobile">
<table class="compat-table">
 <tbody>
  <tr>
   <th>Feature</th>
   <th>Android</th>
   <th>Firefox Mobile (Gecko)</th>
   <th>IE Mobile</th>
   <th>Opera Mobile</th>
   <th>Safari Mobile</th>
  </tr>
  <tr>
   <td>기초 지원</td>
   <td>1</td>
   <td>{{CompatGeckoMobile(1.0)}}</td>
   <td>9</td>
   <td>9</td>
   <td>3</td>
  </tr>
 </tbody>
</table>
</div>

<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>