Skip to content

Instantly share code, notes, and snippets.

@tdwesten
Forked from devatrox/selection.scss
Last active August 29, 2015 14:08
Show Gist options
  • Save tdwesten/5079be1cbbd2701d12d1 to your computer and use it in GitHub Desktop.
Save tdwesten/5079be1cbbd2701d12d1 to your computer and use it in GitHub Desktop.
Target selection styling via SCSS mixin
@mixin selection {
::-moz-selection {
@content;
}
::selection {
@content;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment