Web Development

Why doesn't caret-color work on some elements?

→  caret-color only works on editable elements (input, textarea, contenteditable). Regular text elements don't have a text cursor to style.

Answer

Why doesn't caret-color work on some elements?

caret-color only works on editable elements (input, textarea, contenteditable). Regular text elements don't have a text cursor to style.

The caret only appears in elements where you can type. Applying caret-color to a paragraph or div without contenteditable='true' has no effect.

Q

A

← All FAQs