Custom text selection

PHOTO EMBED

Tue Apr 25 2023 12:32:11 GMT+0000 (Coordinated Universal Time)

Saved by @Shivam_Verma #javascript #space #replacespace #html

//html code
<p class="custom-text-selection">Select some of this text.</p>

//css code
::selection {
  background: aquamarine;
  color: black;
}
.custom-text-selection::selection {
  background: deeppink;
  color: white;
}
content_copyCOPY

::selection defines a pseudo selector on an element to style text within it when selected. Note that if you don't combine any other selector your style will be applied at document root level, to any selectable element.

30 Seconds Of Knowledge