Skip to content

Instantly share code, notes, and snippets.

@charisTheo
Created October 28, 2018 11:10
Show Gist options
  • Select an option

  • Save charisTheo/814931b26ce2c0994a3a4e90969e1295 to your computer and use it in GitHub Desktop.

Select an option

Save charisTheo/814931b26ce2c0994a3a4e90969e1295 to your computer and use it in GitHub Desktop.
Text and Image Selection CSS property
::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