aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/css/_doublecolon_spelling-error/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/fr/web/css/_doublecolon_spelling-error/index.html')
-rw-r--r--files/fr/web/css/_doublecolon_spelling-error/index.html84
1 files changed, 84 insertions, 0 deletions
diff --git a/files/fr/web/css/_doublecolon_spelling-error/index.html b/files/fr/web/css/_doublecolon_spelling-error/index.html
new file mode 100644
index 0000000000..03b39061f8
--- /dev/null
+++ b/files/fr/web/css/_doublecolon_spelling-error/index.html
@@ -0,0 +1,84 @@
+---
+title: '::spelling-error'
+slug: 'Web/CSS/::spelling-error'
+tags:
+ - CSS
+ - Experimental
+ - Pseudo-element
+ - Reference
+translation_of: 'Web/CSS/::spelling-error'
+---
+<div>{{CSSRef}}{{SeeCompatTable}}</div>
+
+<p>Le pseudo-élément <strong><code>::spelling-error</code></strong> représente une portion de texte que le navigateur signale comme étant mal orthographiée.</p>
+
+<pre class="brush: css no-line-numbers">::spelling-error {
+ color: red;
+}</pre>
+
+<h2 id="Propriétés_autoriséees">Propriétés autoriséees</h2>
+
+<p>Seul un sous-ensemble restreint de propriétés CSS peut être utilisé dans une règle dont le sélecteur contient <code>::spelling-error</code> :</p>
+
+<ul>
+ <li>{{cssxref("color")}},</li>
+ <li>{{cssxref("background-color")}},</li>
+ <li>{{cssxref("cursor")}},</li>
+ <li>{{cssxref("caret-color")}}</li>
+ <li>{{cssxref("outline")}} et les propriétés détaillées correspondantes,</li>
+ <li>{{cssxref("text-decoration")}} et les propriétés détaillées correspondantes.</li>
+ <li>{{cssxref("text-emphasis-color")}},</li>
+ <li>{{cssxref("text-shadow")}}</li>
+</ul>
+
+<h2 id="Syntaxe">Syntaxe</h2>
+
+<pre class="syntaxbox">::spelling-error</pre>
+
+<h2 id="Exemples">Exemples</h2>
+
+<h3 id="CSS">CSS</h3>
+
+<pre class="brush: css">p::spelling-error { color:red }</pre>
+
+<h3 id="HTML">HTML</h3>
+
+<pre class="brush: html">&lt;p&gt;
+ Alice devina tout de suite qu’il cherch l’éventail
+ et la paire de gants.
+&lt;/p&gt;</pre>
+
+<h3 id="Résultat">Résultat</h3>
+
+<p>{{EmbedLiveSample("Exemples","250","100")}}</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('CSS4 Pseudo-Elements', '#selectordef-spelling-error', '::spelling-error')}}</td>
+ <td>{{Spec2('CSS4 Pseudo-Elements')}}</td>
+ <td>Définition initiale</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.spelling-error")}}</p>
+
+<h2 id="Voir_aussi">Voir aussi</h2>
+
+<ul>
+ <li>{{cssxref("::grammar-error")}}</li>
+</ul>