Web Development
What is the ::selection pseudo-element?
→ A CSS pseudo-element that styles highlighted/selected text: ::selection { background: yellow; color: black; }
Answer
What is the ::selection pseudo-element?
A CSS pseudo-element that styles highlighted/selected text: ::selection { background: yellow; color: black; }
::selection lets you customize how selected text appears. You can set background, color, and a few other properties. Note that not all CSS properties work inside ::selection.