Created
October 28, 2018 11:10
-
-
Save charisTheo/814931b26ce2c0994a3a4e90969e1295 to your computer and use it in GitHub Desktop.
Text and Image Selection CSS property
This file contains hidden or 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
| ::selection { | |
| background-color: #aa00ff; | |
| text-shadow: none; | |
| color: #151515; | |
| } | |
| ::-moz-selection { | |
| background-color: #aa00ff; | |
| text-shadow: none; | |
| color: #151515; | |
| } | |
| img::selection { | |
| color: #151515; | |
| background: transparent; | |
| } | |
| img::-moz-selection { | |
| color: #151515; | |
| background: transparent; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment