aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/css/_doublecolon_spelling-error/index.html
blob: b602c7d4b30a50add9d04f289eafc6802e39e02d (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
---
title: '::spelling-error'
slug: 'Web/CSS/::spelling-error'
tags:
  - CSS
  - Experimental
  - NeedsExample
  - Pseudo-element
  - Reference
  - Web
  - 疑似要素
translation_of: 'Web/CSS/::spelling-error'
---
<div>{{CSSRef}}{{SeeCompatTable}}</div>

<p><a href="/ja/docs/Web/CSS">CSS</a><strong><code>::spelling-error</code></strong> <a href="/ja/docs/Web/CSS/Pseudo-elements">疑似要素</a>は、綴りが正しくないと{{glossary("user agent", "ユーザーエージェント")}}が判断したテキスト区間を示します。</p>

<pre class="brush: css no-line-numbers">::spelling-error {
  color: red;
}</pre>

<h2 id="Allowable_properties" name="Allowable_properties">利用できるプロパティ</h2>

<p><code>::spelling-error</code> 擬似要素では、一部の CSS プロパティのみが利用できます。</p>

<ul>
 <li>{{cssxref("color")}}</li>
 <li>{{cssxref("background-color")}}</li>
 <li>{{cssxref("cursor")}}</li>
 <li>{{cssxref("caret-color")}}</li>
 <li>{{cssxref("outline")}} およびその個別指定プロパティ</li>
 <li>{{cssxref("text-decoration")}} および関連プロパティ</li>
 <li>{{cssxref("text-emphasis-color")}}</li>
 <li>{{cssxref("text-shadow")}}</li>
</ul>

<h2 id="Syntax" name="Syntax">構文</h2>

<pre class="syntaxbox">::spelling-error</pre>

<h2 id="Specifications" name="Specifications">仕様書</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">仕様書</th>
   <th scope="col">策定状況</th>
   <th scope="col">コメント</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName('CSS4 Pseudo-Elements', '#selectordef-spelling-error', '::spelling-error')}}</td>
   <td>{{Spec2('CSS4 Pseudo-Elements')}}</td>
   <td>初回定義。</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザー実装状況</h2>

<div>
<p>{{Compat("css.selectors.spelling-error")}}</p>
</div>

<h2 id="See_also" name="See_also">関連情報</h2>

<ul>
 <li>{{cssxref("::grammar-error")}}</li>
</ul>