Skip to content

Instantly share code, notes, and snippets.

@jackilyn
Created January 12, 2012 20:17
Show Gist options
  • Save jackilyn/1602850 to your computer and use it in GitHub Desktop.
Save jackilyn/1602850 to your computer and use it in GitHub Desktop.
Text Selection CSS
/* Mozilla based browsers */
::-moz-selection {
background-color: #FFA;
color: #000;
}
/* Webkit based browsers */
::-webkit-selection {
background-color: #FFA;
color: #000;
}
/* Works in Safari */
::selection {
background-color: #FFA;
color: #000;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment