Files
30-seconds-of-code/snippets/custom-text-selection.md
2020-12-30 15:37:37 +02:00

404 B

title, tags
title tags
Custom text selection visual,beginner

Changes the styling of text selection.

  • Use the ::selection pseudo-selector to style text within it when selected.
<p class="custom-text-selection">Select some of this text.</p>
::selection {
  background: aquamarine;
  color: black;
}

.custom-text-selection::selection {
  background: deeppink;
  color: white;
}