From 7614747e5d77f52a5db8bfb7b0ec1950d356d71b Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Mon, 3 Jan 2022 12:44:21 +0900 Subject: 2021/08/13 時点の英語版に同期 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../web/css/_doublecolon_spelling-error/index.md | 131 +++++++++++---------- 1 file changed, 66 insertions(+), 65 deletions(-) diff --git a/files/ja/web/css/_doublecolon_spelling-error/index.md b/files/ja/web/css/_doublecolon_spelling-error/index.md index b602c7d4b3..e72054ec62 100644 --- a/files/ja/web/css/_doublecolon_spelling-error/index.md +++ b/files/ja/web/css/_doublecolon_spelling-error/index.md @@ -1,70 +1,71 @@ --- title: '::spelling-error' -slug: 'Web/CSS/::spelling-error' +slug: Web/CSS/::spelling-error tags: - CSS - - Experimental - - NeedsExample - - Pseudo-element - - Reference - - Web - - 疑似要素 -translation_of: 'Web/CSS/::spelling-error' + - 実験的 + - 擬似要素 + - リファレンス + - セレクター + - ウェブ +browser-compat: css.selectors.spelling-error +translation_of: Web/CSS/::spelling-error --- -
{{CSSRef}}{{SeeCompatTable}}
- -

CSS::spelling-error 疑似要素は、綴りが正しくないと{{glossary("user agent", "ユーザーエージェント")}}が判断したテキスト区間を示します。

- -
::spelling-error {
-  color: red;
-}
- -

利用できるプロパティ

- -

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

- - - -

構文

- -
::spelling-error
- -

仕様書

- - - - - - - - - - - - - - - - -
仕様書策定状況コメント
{{SpecName('CSS4 Pseudo-Elements', '#selectordef-spelling-error', '::spelling-error')}}{{Spec2('CSS4 Pseudo-Elements')}}初回定義。
- -

ブラウザー実装状況

- -
-

{{Compat("css.selectors.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 +

My friends are coegdfgfddffbgning to the party tonight.

+``` + +#### CSS + +```css +::spelling-error  { +  text-decoration: wavy red; +} +``` + +#### 結果 + +{{EmbedLiveSample('Simple_document_spell_check', '100%', 60)}} + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- {{cssxref("::grammar-error")}} -- cgit v1.2.3-54-g00ecf