::spelling-error - CSS | MDN

Allowable properties

Only a small subset of CSS properties can be used in a rule with ::spelling-error in its selector:

Syntax

css

::spelling-error {
  /* ... */
}

Examples

Basic document spell check

In this example, eventual supporting browsers should highlight any flagged spelling errors with the styles shown.

HTML

html

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

CSS

css

::spelling-error {
  text-decoration: wavy red underline;
}

Result

Specifications

Specification
CSS Pseudo-Elements Module Level 4
# selectordef-spelling-error

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on by MDN contributors.