blob: c7e6c1c2c70470bdda5ba3dbd9ecee87536131a8 (
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
|
---
title: '::grammar-error'
slug: Web/CSS/::grammar-error
tags:
- CSS
- 実験的
- 擬似要素
- リファレンス
- セレクター
browser-compat: css.selectors.grammar-error
translation_of: Web/CSS/::grammar-error
---
{{CSSRef}}{{SeeCompatTable}}
**`::grammar-error`** は [CSS](/ja/docs/Web/CSS) の[擬似要素](/ja/docs/Web/CSS/Pseudo-elements)で、{{glossary("user agent", "ユーザーエージェント")}}が文法的に正しくないとしたテキストの区間を示します。
## 利用できるプロパティ
`::grammar-error` 擬似要素では、一部の CSS プロパティのみが利用できます。
- {{cssxref("color")}}
- {{cssxref("background-color")}}
- {{cssxref("cursor")}}
- {{cssxref("caret-color")}}
- {{cssxref("outline")}} およびその個別指定プロパティ
- {{cssxref("text-decoration")}} および関連プロパティ
- {{cssxref("text-emphasis-color")}}
- {{cssxref("text-shadow")}}
## 構文
```css
::grammar-error
```
## 例
### 単純な文書の文法チェック
この例では、最終的に対応しているブラウザーでは、フラグの立った文法エラーがあれば、示したスタイルで強調表示されます。
#### HTML
```html
<p>My friends is coming to the party tonight.</p>
```
#### CSS
```css
::grammar-error {
text-decoration: underline red;
color: red;
}
```
#### 結果
{{EmbedLiveSample('Simple_document_grammar_check', '100%', 60)}}
## 仕様書
{{Specifications}}
## ブラウザーの互換性
{{Compat}}
## 関連情報
- {{cssxref("::spelling-error")}}
|