/ Gists / Prefixer mixin
On gists

Prefixer mixin

SCSS
Prefixer mixin

Prefixer.scss Raw #

@mixin prefixer($property, $value) {
    @each $prefix in -webkit-, -moz-, -ms-, -o-, '' {
    #{$prefix}#{$property}: $value;
    }
}