aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/css/_colon_indeterminate/index.html
blob: 98a10ed83cf3e3bc069f55479890aa796b3a5114 (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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
---
title: ':indeterminate'
slug: 'Web/CSS/:indeterminate'
tags:
  - CSS
  - Pseudo-classe
  - Reference
translation_of: 'Web/CSS/:indeterminate'
---
<div>{{CSSRef}}</div>

<p>La <a href="/fr/docs/Web/CSS/Pseudo-classes">pseudo-classe</a> <strong><code>:indeterminate</code></strong> permet de cibler un élément de formulaire dont l'état est indéterminé.</p>

<pre class="brush: css no-line-numbers">/* Cible n'importe quel élément &lt;input&gt; */
/* dans un état indéterminé */
input:indeterminate {
  background: lime;
}</pre>

<p>Cela inclut :</p>

<ul>
 <li>un élément <code><a href="/fr/docs/Web/HTML/Element/input/checkbox">&lt;input type="checkbox"&gt;</a></code> dont la propriété du DOM <code>indeterminate</code> est fixée à <code>true</code> via du code JavaScript</li>
 <li>des éléments <code><a href="/fr/docs/Web/HTML/Element/input/radio">&lt;input type="radio"&gt;</a></code> dont tous les boutons radio du groupe sont décochés</li>
 <li>des éléments {{HTMLElement("progress")}} dans un état indéterminé.</li>
</ul>

<h2 id="Syntaxe">Syntaxe</h2>

{{csssyntax}}

<h2 id="Exemples">Exemples</h2>

<h3 id="Case_à_cocher_et_bouton_radio">Case à cocher et bouton radio</h3>

<h4 id="CSS">CSS</h4>

<pre class="brush: css; hightlight[5]">input, span {
  background: red;
}

:indeterminate, :indeterminate + label {
  background: lime;
}
</pre>

<h4 id="HTML">HTML</h4>

<pre class="brush: html">&lt;div&gt;
  &lt;input type="checkbox" id="checkbox"&gt;
  &lt;label for="checkbox"&gt;L'arrière-plan devrait être vert.&lt;/label&gt;
&lt;/div&gt;
&lt;div&gt;
  &lt;input type="radio" id="radio"&gt;
  &lt;label for="radio"&gt;L'arrière-plan devrait être vert.&lt;/label&gt;
&lt;/div&gt;</pre>

<h4 id="JavaScript">JavaScript</h4>

<pre class="brush: js">var inputs = document.getElementsByTagName("input");
for(var i = 0; i &lt; inputs.length; i++) {
  inputs[i].indeterminate = true;
}
</pre>

<h4 id="Résultat">Résultat</h4>

<p>{{EmbedLiveSample('Case_à_cocher_et_bouton_radio', '100%', 50)}}</p>

<h3 id="Élément_progress">Élément <code>progress</code></h3>

<h4 id="CSS_2">CSS</h4>

<pre class="brush: css; hightlight[5]">progress:indeterminate {
  opacity: 0.5;
  box-shadow: 0 0 2px 1px red;
}
</pre>

<h4 id="HTML_2">HTML</h4>

<pre class="brush: html">&lt;progress/&gt;
</pre>

<h4 id="Résultat_2">Résultat</h4>

<p>{{EmbedLiveSample('Élément_progress', '100%', 30)}}</p>

<h2 id="Spécifications">Spécifications</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">Spécification</th>
   <th scope="col">État</th>
   <th scope="col">Commentaires</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName('HTML WHATWG', '#selector-indeterminate', ':indeterminate')}}</td>
   <td>{{Spec2('HTML WHATWG')}}</td>
   <td>Aucune modification.</td>
  </tr>
  <tr>
   <td>{{SpecName('HTML5 W3C', '#selector-indeterminate', ':indeterminate')}}</td>
   <td>{{Spec2('HTML5 W3C')}}</td>
   <td>Définition de la sémantique relative à HTML et des contraintes de validation associées.</td>
  </tr>
  <tr>
   <td>{{SpecName('CSS4 Selectors', '#indeterminate', ':indeterminate')}}</td>
   <td>{{Spec2('CSS4 Selectors')}}</td>
   <td>Aucune modification.</td>
  </tr>
  <tr>
   <td>{{SpecName('CSS3 Basic UI', '#indeterminate', ':indeterminate')}}</td>
   <td>{{Spec2('CSS3 Basic UI')}}</td>
   <td>Définition de la pseudo-classe, sans notion de sémantique associée.</td>
  </tr>
 </tbody>
</table>

<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>

<div class="hidden">Ce tableau de compatibilité a été généré à partir de données structurées. Si vous souhaitez contribuer à ces données, n'hésitez pas à envoyer une <em>pull request</em> sur <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a>.</div>

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