Skip to content

Instantly share code, notes, and snippets.

@kausters
Created January 28, 2013 17:04
Show Gist options
  • Save kausters/4657220 to your computer and use it in GitHub Desktop.
Save kausters/4657220 to your computer and use it in GitHub Desktop.
A simple SCSS mixin for generating ::selection rules for selected text. Usage: @include selection { /* your style */ }
@mixin selection {
& ::selection {
@content;
}
& ::-moz-selection {
@content;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment