Skip to content

Instantly share code, notes, and snippets.

@asifvora
Created March 15, 2019 05:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save asifvora/5fd9c3249c7845a04c2faabe89258765 to your computer and use it in GitHub Desktop.
Save asifvora/5fd9c3249c7845a04c2faabe89258765 to your computer and use it in GitHub Desktop.
Custom text selection changes the styling of text selection.
<style>
::selection {
background: aquamarine;
color: black;
}
.custom-text-selection::selection {
background: deeppink;
color: white;
}
</style>
<p class="custom-text-selection">Select some of this text.</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment