aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/css/_doublecolon_spelling-error/index.md
blob: e72054ec628fee895c7a07c31be330e6e969f202 (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: '::spelling-error'
slug: Web/CSS/::spelling-error
tags:
  - CSS
  - 実験的
  - 擬似要素
  - リファレンス
  - セレクター
  - ウェブ
browser-compat: css.selectors.spelling-error
translation_of: Web/CSS/::spelling-error
---
{{CSSRef}}{{SeeCompatTable}}

**`::spelling-error`** は [CSS](/ja/docs/Web/CSS) の[擬似要素](/ja/docs/Web/CSS/Pseudo-elements)で、綴りが正しくないと{{glossary("user agent", "ユーザーエージェント")}}が判断したテキストの区間を示します。

## 利用できるプロパティ

`::spelling-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
::spelling-error
```

## 例

### 文書の単純なスペルチェック

この例では、最終的に対応しているブラウザーでは、表示されたスタイルでフラグ付きのスペルミスを強調表示します。

#### HTML

```html
<p contenteditable spellcheck="true">My friends are coegdfgfddffbgning to the party tonight.</p>
```

#### CSS

```css
::spelling-error  {
  text-decoration: wavy red;
}
```

#### 結果

{{EmbedLiveSample('Simple_document_spell_check', '100%', 60)}}

## 仕様書

{{Specifications}}

## ブラウザーの互換性

{{Compat}}

## 関連情報

- {{cssxref("::grammar-error")}}