Skip to content

Instantly share code, notes, and snippets.

@erikflowers
Created September 26, 2013 05:57
Show Gist options
  • Save erikflowers/6710354 to your computer and use it in GitHub Desktop.
Save erikflowers/6710354 to your computer and use it in GitHub Desktop.
CSS Text Select Highlight
// This is the mixin
.highlight(@backgroundColor, @textColor) {
::selection, -moz::selection {
background: @backgroundColor;
color: @textColor;
}
}
// This is how you use it
.highlight(@yourColor, @white);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment