blob: cfdea7d6496d14160dd2edf2c7242652963fbdec (
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
|
---
title: ':enabled'
slug: 'Web/CSS/:enabled'
tags:
- CSS
- Layout
- Pseudo-class
- Reference
- Selector
- Web
translation_of: 'Web/CSS/:enabled'
---
<div>{{CSSRef}}</div>
<p><strong><code>:enabled</code></strong> は <a href="/ja/docs/Web/CSS">CSS</a> の<a href="/ja/docs/Web/CSS/Pseudo-classes">擬似クラス</a>で、すべての有効な要素を表します。有効な要素とは、アクティブ化 (選択、クリック、入力など) したりフォーカスを得たりすることができるものです。要素には無効な状態、つまりアクティブ化したりフォーカスを得たりすることができない状態もあります。</p>
<pre class="brush: css no-line-numbers notranslate">/* 有効な <input> を選択 */
input:enabled {
color: blue;
}</pre>
<h2 id="Syntax" name="Syntax">構文</h2>
{{csssyntax}}
<h2 id="Examples" name="Examples">例</h2>
<p>以下の例は有効なときに文字列の色とボタンの {{htmlElement("input")}} を緑色にし、無効な時に灰色にします。これでユーザーは要素が操作できるかどうかを知るのに役立ちます。</p>
<h3 id="HTML">HTML</h3>
<pre class="brush:html notranslate"><form action="url_of_form">
<label for="FirstField">First field (enabled):</label>
<input type="text" id="FirstField" value="Lorem"><br>
<label for="SecondField">Second field (disabled):</label>
<input type="text" id="SecondField" value="Ipsum" disabled="disabled"><br>
<input type="button" value="Submit">
</form></pre>
<h3 id="CSS">CSS</h3>
<pre class="brush:css; notranslate">input:enabled {
color: #2b2;
}
input:disabled {
color: #aaa;
}
</pre>
<h3 id="Result" name="Result">結果</h3>
<p>{{EmbedLiveSample("Examples", 550, 95)}}</p>
<h2 id="Specifications" name="Specifications">仕様書</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">仕様書</th>
<th scope="col">状態</th>
<th scope="col">備考</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('HTML WHATWG', '#selector-enabled', ':enabled')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td>変更なし。</td>
</tr>
<tr>
<td>{{SpecName('HTML5 W3C', '#selector-enabled', ':enabled')}}</td>
<td>{{Spec2('HTML5 W3C')}}</td>
<td>HTML に関する意味を定義。</td>
</tr>
<tr>
<td>{{SpecName('CSS4 Selectors', '#enableddisabled', ':enabled')}}</td>
<td>{{Spec2('CSS4 Selectors')}}</td>
<td>変更なし。</td>
</tr>
<tr>
<td>{{SpecName('CSS3 Selectors', '#enableddisabled', ':enabled')}}</td>
<td>{{Spec2('CSS3 Selectors')}}</td>
<td>擬似クラスを定義。ただし意味の結びつけの定義はなし。</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("css.selectors.enabled")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>{{Cssxref(":disabled")}}</li>
</ul>
|