diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/fr/web/css/_colon_indeterminate | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/fr/web/css/_colon_indeterminate')
-rw-r--r-- | files/fr/web/css/_colon_indeterminate/index.html | 127 |
1 files changed, 127 insertions, 0 deletions
diff --git a/files/fr/web/css/_colon_indeterminate/index.html b/files/fr/web/css/_colon_indeterminate/index.html new file mode 100644 index 0000000000..5ebd9cd85e --- /dev/null +++ b/files/fr/web/css/_colon_indeterminate/index.html @@ -0,0 +1,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 <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> + +<pre class="syntaxbox">{{csssyntax}}</pre> + +<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"><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; 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"><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> + +<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> |