Skip to content

Instantly share code, notes, and snippets.

@xianhuazhou
Created March 30, 2011 06:39
Show Gist options
  • Save xianhuazhou/893960 to your computer and use it in GitHub Desktop.
Save xianhuazhou/893960 to your computer and use it in GitHub Desktop.
selection styles
p.normal::selection {
background:#cc0000;
color:#fff;
}
p.moz::-moz-selection {
background:#cc0000;
color:#fff;
}
p.webkit::-webkit-selection {
background:#cc0000;
color:#fff;
}
=-------=
http://www.quirksmode.org/css/selection.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment