Skip to content

Instantly share code, notes, and snippets.

@tdrach
Created March 9, 2015 18:59
Show Gist options
  • Save tdrach/d5a794500e26132d41d7 to your computer and use it in GitHub Desktop.
Save tdrach/d5a794500e26132d41d7 to your computer and use it in GitHub Desktop.
Vendor prefix any and all CSS properties
// Mixin
@mixin vp($property, $values) {
-webkit-#{$property}: #{$values};
-ms-#{$property}: #{$values};
-moz-#{$property}: #{$values};
-o-#{$property}: #{$values};
#{$property}: #{$values};
}
// Mixin - Usage
.touch-link {
@include vp(user-select, none);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment