blob: 6d55d7ab0190bb031e5e306f04afce7e5801050a (
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
|
---
title: '::grammar-error'
slug: 'Web/CSS/::grammar-error'
tags:
- CSS
- Experimental
- Pseudo-element
- Reference
translation_of: 'Web/CSS/::grammar-error'
---
<div>{{CSSRef}}{{SeeCompatTable}}</div>
<p>Le pseudo-élément CSS <strong><code>::grammar-error</code></strong> représente une portion de texte que le navigateur signale comme contenant une ou plusieurs erreurs de grammaire.</p>
<pre class="brush: css no-line-numbers">::grammar-error {
color: green;
}</pre>
<h2 id="Propriétés_autorisées">Propriétés autorisées</h2>
<p>Seul un sous-ensemble restreint de propriétés CSS peut être utilisé dans une règle contenant <code>::grammar-error</code> :</p>
<ul>
<li>{{cssxref("background-color")}},</li>
<li>{{cssxref("caret-color")}},</li>
<li>{{cssxref("color")}},</li>
<li>{{cssxref("cursor")}},</li>
<li>{{cssxref("outline")}} et les propriétés détaillées associées,</li>
<li>{{cssxref("text-decoration")}} et les propriétés détaillées associées.</li>
<li>{{cssxref("text-emphasis-color")}},</li>
<li>{{cssxref("text-shadow")}}</li>
</ul>
<h2 id="Syntaxe">Syntaxe</h2>
<pre class="syntaxbox">::grammar-error</pre>
<h2 id="Exemples">Exemples</h2>
<h3 id="CSS">CSS</h3>
<pre class="brush: css">p::grammar-error { color:red }</pre>
<h3 id="HTML">HTML</h3>
<pre class="brush: html"><p>
Alice devina tout de suite qu’il chercher l’éventail
et la paire de gants.
</p></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-grammar-error', '::grammar-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>
<p>{{Compat("css.selectors.grammar-error")}}</p>
<h2 id="Voir_aussi">Voir aussi</h2>
<ul>
<li>{{cssxref("::spelling-error")}}</li>
</ul>
|