diff options
Diffstat (limited to 'files/fr/web/css/_colon_indeterminate/index.md')
-rw-r--r-- | files/fr/web/css/_colon_indeterminate/index.md | 125 |
1 files changed, 125 insertions, 0 deletions
diff --git a/files/fr/web/css/_colon_indeterminate/index.md b/files/fr/web/css/_colon_indeterminate/index.md new file mode 100644 index 0000000000..a94a588e4b --- /dev/null +++ b/files/fr/web/css/_colon_indeterminate/index.md @@ -0,0 +1,125 @@ +--- +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 <input> */ +/* 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"><input type="checkbox"></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"><input type="radio"></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">input, span { + background: red; +} + +:indeterminate, :indeterminate + label { + background: lime; +} +</pre> + +<h4 id="HTML">HTML</h4> + +<pre class="brush: html"><div> + <input type="checkbox" id="checkbox"> + <label for="checkbox">L'arrière-plan devrait être vert.</label> +</div> +<div> + <input type="radio" id="radio"> + <label for="radio">L'arrière-plan devrait être vert.</label> +</div></pre> + +<h4 id="JavaScript">JavaScript</h4> + +<pre class="brush: js">var inputs = document.getElementsByTagName("input"); +for(var i = 0; i < 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">progress:indeterminate { + opacity: 0.5; + box-shadow: 0 0 2px 1px red; +} +</pre> + +<h4 id="HTML_2">HTML</h4> + +<pre class="brush: html"><progress/> +</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> + +<p>{{Compat("css.selectors.indeterminate")}}</p> |