Created
November 30, 2011 14:59
-
-
Save maxt3r/1409349 to your computer and use it in GitHub Desktop.
Changing text selection color with CSS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
::-moz-selection { background: #4DA400; color: #fff; text-shadow: none; } | |
::selection { background: #4DA400; color: #fff; text-shadow: none; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Where do you put these lines of code? Somewhere in the style.scss file?