796 B
796 B
Custom text selection
Changes the styling of text selection.
HTML
<p class="custom-text-selection">Select some of this text.</p>
CSS
.custom-text-selection::selection {
background: red;
color: white;
}
Demo
Select some of this text.
Explanation
::selection defines a pseudo selector on an element to style text within it when selected.
Browser support
⚠️ Requires prefixes for full support.