blob: af6317055ee84d12f3b47e9ec45132a65c9fd29a (
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
83
84
85
86
87
|
---
title: '::grammar-error'
slug: 'Web/CSS/::grammar-error'
tags:
- CSS
- Experimental
- Pseudo-element
- Reference
- Selector
translation_of: 'Web/CSS/::grammar-error'
---
<div>{{CSSRef}}{{SeeCompatTable}}</div>
<p><strong><code>::grammar-error</code></strong> は <a href="/ja/docs/Web/CSS">CSS</a> の<a href="/ja/docs/Web/CSS/Pseudo-elements">擬似要素</a>で、{{glossary("user agent", "ユーザーエージェント")}}が文法的に正しくないとしたテキストの区間を示します。</p>
<h2 id="Allowable_properties" name="Allowable_properties">利用できるプロパティ</h2>
<p><code>::grammar-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 notranslate">::grammar-error</pre>
<h2 id="Examples" name="Examples">例</h2>
<h3 id="Simple_document_grammar_check" name="Simple_document_grammar_check">単純な文書の構文チェック</h3>
<p>この例では、最終的に対応しているブラウザーでは、フラグの立った文法エラーがあれば、示したスタイルで強調表示されます。</p>
<h4 id="HTML">HTML</h4>
<pre class="brush: html notranslate"><p>My friends is coming to the party tonight.</p></pre>
<h4 id="CSS">CSS</h4>
<pre class="brush: css notranslate">::grammar-error {
text-decoration: underline red;
color: red;
}</pre>
<h4 id="Result" name="Result">結果</h4>
<p>{{EmbedLiveSample('Simple_document_grammar_check', '100%', 60)}}</p>
<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-grammar-error', '::grammar-error')}}</td>
<td>{{Spec2('CSS4 Pseudo-Elements')}}</td>
<td>初回定義</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<div>
<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div>
<p>{{Compat("css.selectors.grammar-error")}}</p>
</div>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>{{cssxref("::spelling-error")}}</li>
</ul>
|