aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/css/order/index.html
blob: 8b25e3877769f3e8ea3dc999ff69c02ad60d7536 (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
102
103
104
105
106
107
108
109
110
---
title: order
slug: Web/CSS/order
tags:
  - CSS
  - CSS Flexible Boxes
  - CSS Property
  - Reference
translation_of: Web/CSS/order
---
<div>{{CSSRef}}</div>

<p><span class="seoSummary"><strong><code>order</code></strong> <a href="/ko/docs/Web/CSS">CSS</a> 속성은 플렉스 또는 그리드 컨테이너 안에서 현재 요소의 배치 순서를 지정합니다.</span> 컨테이너 아이템의 정렬 순서는 오름차순 <code>order</code> 값이고, 같은 값일 경우 소스 코드의 순서대로 정렬됩니다.</p>

<div>{{EmbedInteractiveExample("pages/css/order.html")}}</div>



<h2 id="구문">구문</h2>

<pre class="brush:css no-line-numbers">/* &lt;integer&gt; 값 */
order: 5;
order: -5;

/* 전역 값 */
order: inherit;
order: initial;
order: unset;</pre>

<div class="note">
<p><strong>참고</strong>: <code>order</code> 속성은 논리적인 순서나 탭 순서와는 전혀 상관 없이 <strong>화면에 보이는 순서</strong>에만 영향을 줍니다. 따라서 비시각적 매체에 적용해선 안됩니다.</p>
</div>

<h3 id="값"></h3>

<dl>
 <dt>{{cssxref("&lt;integer&gt;")}}</dt>
 <dd>아이템의 순서.</dd>
</dl>

<h3 id="형식_구문">형식 구문</h3>

<pre class="syntaxbox">{{csssyntax}}</pre>

<h2 id="예제">예제</h2>

<pre class="brush:html;">&lt;header&gt;...&lt;/header&gt;
&lt;main&gt;
  &lt;article&gt;Article&lt;/article&gt;
  &lt;nav&gt;Nav&lt;/nav&gt;
  &lt;aside&gt;Aside&lt;/aside&gt;
&lt;/main&gt;
&lt;footer&gt;...&lt;/footer&gt;</pre>

<p>위와 같은 기본적인 HTML에서, 다음 CSS 코드는 콘텐츠 블록을 감싸는, 고전적인 양쪽 사이드바 레이아웃을 만듭니다. Flexible Box Layout 모듈이 자동으로 모든 블록의 높이를 동일하게 하며 가능한 가로축 공간을 모두 분배합니다.</p>

<pre class="brush:css;">main { display: flex;  text-align:center; }
main &gt; article { flex:1;        order: 2; }
main &gt; nav     { width: 200px;  order: 1; }
main &gt; aside   { width: 200px;  order: 3; }</pre>

<h3 id="결과">결과</h3>

<p>{{ EmbedLiveSample('Example') }}</p>

<h2 id="접근성_고려사항">접근성 고려사항</h2>

<p><code>order</code> 속성을 사용하면 실제 DOM 순서와 화면에 보여지는 콘텐츠의 순서가 서로 연결되지 않습니다. 이는 낮은 시각으로 스크린 리더 등 보조 기술을 사용해 이동하는 사용자의 경험에 부정적인 영향을 줄 수 있습니다. 시각적 순서(CSS)가 중요하더라도 스크린 리더 사용자는 제대로 된 읽기 순서를 알 수 없습니다.</p>

<ul>
 <li><a href="https://tink.uk/flexbox-the-keyboard-navigation-disconnect/">Flexbox &amp; the keyboard navigation disconnect — Tink</a></li>
 <li><a href="http://adrianroselli.com/2015/09/source-order-matters.html">Source Order Matters | Adrian Roselli</a></li>
 <li><a href="https://developer.mozilla.org/en-US/docs/Web/Accessibility/Understanding_WCAG/Perceivable#Guideline_1.3_%E2%80%94_Create_content_that_can_be_presented_in_different_ways">MDN Understanding WCAG, Guideline 1.3 explanations</a></li>
 <li><a href="https://www.w3.org/TR/UNDERSTANDING-WCAG20/content-structure-separation-sequence.html">Understanding Success Criterion 1.3.2 | W3C Understanding WCAG 2.0</a></li>
</ul>

<h2 id="명세">명세</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('CSS3 Flexbox', '#order-property', 'order')}}</td>
   <td>{{Spec2('CSS3 Flexbox')}}</td>
   <td>Initial definition</td>
  </tr>
 </tbody>
</table>

<p>{{cssinfo}}</p>

<h2 id="브라우저_호환성">브라우저 호환성</h2>



<p>{{Compat("css.properties.order")}}</p>

<h2 id="같이_보기">같이 보기</h2>

<ul>
 <li>CSS 플렉스박스 안내서: <em><a href="/ko/docs/Web/CSS/CSS_Flexible_Box_Layout/Basic_Concepts_of_Flexbox">플렉스박스의 기본 개념</a></em></li>
 <li>CSS 플렉스박스 안내서: <em><a href="/ko/docs/Web/CSS/CSS_Flexible_Box_Layout/Ordering_Flex_Items">플렉스 아이템의 순서 정하기</a></em></li>
 <li>CSS 그리드 안내서: <em><a href="/ko/docs/Web/CSS/CSS_Grid_Layout/CSS_Grid_Layout_and_Accessibility">CSS 그리드 레이아웃과 접근성</a></em></li>
</ul>