aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/css/_colon_default/index.html
blob: 06e0558495a71c7c0c3abfbbc05642d620c98577 (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: ':default'
slug: 'Web/CSS/:default'
tags:
  - CSS
  - Layout
  - Pseudo-class
  - Reference
  - Selector
  - Web
translation_of: 'Web/CSS/:default'
---
<div>{{CSSRef}}</div>

<p><a href="/ko/docs/Web/CSS">CSS</a> <strong><code>:default</code></strong> <a href="/ko/docs/Web/CSS/Pseudo-classes">의사 클래스</a>는 연관 요소 내에서의 기본값인 요소를 선택합니다.</p>

<p>이 선택자는<a href="https://html.spec.whatwg.org/multipage/semantics-other.html#selector-default"> HTML Standard §4.16.3 Pseudo-classes</a>에 정의되어 있듯 {{htmlelement("button")}}, <code><a href="/ko/docs/Web/HTML/Element/input/checkbox">&lt;input type="checkbox"&gt;</a></code>, <code><a href="/ko/docs/Web/HTML/Element/input/radio">&lt;input type="radio"&gt;</a></code>, {{htmlelement("option")}} 요소를 아래와 같은 경우에 선택합니다.</p>

<ul>
 <li>옵션 요소의 기본값은 <code>selected</code> 특성을 가진 제일 첫 요소, 즉 DOM 순서 기준으로 제일 앞의 활성화 옵션입니다. <code>multiple</code> 특성의 {{htmlelement("select")}}는 둘 이상의 <code>selected</code> 옵션을 가질 수도 있으므로, 모든 옵션이 <code>:default</code>로 선택됩니다.</li>
 <li><code>&lt;input type="checkbox"&gt;</code><code>&lt;input type="radio"&gt;</code><code>checked</code> 특성을 가지고 있으면 선택됩니다.</li>
 <li>{{htmlelement("button")}}{{htmlelement("form")}} 요소의 <a href="https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#implicit-submission">기본 제출 버튼</a>, 즉 DOM 순서 기준으로 양식에 속하는 제일 첫 <code>&lt;button&gt;</code>이면 선택됩니다. (<code>image</code><code>submit</code>처럼, 양식을 제출하는 다른 {{htmlelement("input")}} 유형에도 적용됩니다.)</li>
</ul>

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

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

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

<h3 id="HTML">HTML</h3>

<pre class="brush: html notranslate">&lt;fieldset&gt;
  &lt;legend&gt;Favorite season&lt;/legend&gt;

  &lt;input type="radio" name="season" id="spring"&gt;
  &lt;label for="spring"&gt;Spring&lt;/label&gt;

  &lt;input type="radio" name="season" id="summer" checked&gt;
  &lt;label for="summer"&gt;Summer&lt;/label&gt;

  &lt;input type="radio" name="season" id="fall"&gt;
  &lt;label for="fall"&gt;Fall&lt;/label&gt;

  &lt;input type="radio" name="season" id="winter"&gt;
  &lt;label for="winter"&gt;Winter&lt;/label&gt;
&lt;/fieldset&gt;
</pre>

<h3 id="CSS">CSS</h3>

<pre class="brush: css notranslate">input:default {
  box-shadow: 0 0 2px 1px coral;
}

input:default + label {
  color: coral;
}
</pre>

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

<p>{{EmbedLiveSample("예제")}}</p>

<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('HTML WHATWG', '#selector-default', ':default')}}</td>
   <td>{{Spec2('HTML WHATWG')}}</td>
   <td>No change.</td>
  </tr>
  <tr>
   <td>{{SpecName('HTML5 W3C', '#selector-default', ':default')}}</td>
   <td>{{Spec2('HTML5 W3C')}}</td>
   <td>Defines associated HTML semantics and constraint validation.</td>
  </tr>
  <tr>
   <td>{{SpecName('CSS4 Selectors', '#default-pseudo', ':default')}}</td>
   <td>{{Spec2('CSS4 Selectors')}}</td>
   <td>No change.</td>
  </tr>
 </tbody>
</table>

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

<div>


<p>{{Compat("css.selectors.default")}}</p>
</div>