Skip to content

Instantly share code, notes, and snippets.

@curiositry
Created August 28, 2013 18:41
Show Gist options
  • Save curiositry/6369668 to your computer and use it in GitHub Desktop.
Save curiositry/6369668 to your computer and use it in GitHub Desktop.
CSS to style selected text differently from how the OS/Browser displays it be default.
::-moz-selection {
background-color: #777;
color: #fff;
}
::selection {
background-color: #777;
color: #fff;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment