Skip to content

Instantly share code, notes, and snippets.

@phoinixi
Created May 14, 2015 14:10
Show Gist options
  • Save phoinixi/8327f44df535232fc65e to your computer and use it in GitHub Desktop.
Save phoinixi/8327f44df535232fc65e to your computer and use it in GitHub Desktop.
simple browser prefix sass mixin, with this mixin you can apply every browser prefix in one line
@mixin browser-prefix($name, $argument) {
-webkit-#{$name}: #{$argument};
-ms-#{$name}: #{$argument};
-moz-#{$name}: #{$argument};
-o-#{$name}: #{$argument};
#{$name}: #{$argument};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment