Skip to content

Instantly share code, notes, and snippets.

@devatrox
Last active January 4, 2016 08:39
Show Gist options
  • Save devatrox/8597089 to your computer and use it in GitHub Desktop.
Save devatrox/8597089 to your computer and use it in GitHub Desktop.
::selection prefix 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