Sass
%half { width: 50%; }
%full { width: 100%; }
#foo {
@extend %full;
@media screen (min-width: 600px) {
@extend %half;
// Original gist https://gist.github.com/280797 | |
$prefixes: -webkit- -moz- -ms- -o- !default | |
=prefix($property, $value, $prefixes) | |
@each $prefix in $prefixes | |
#{$prefix}#{$property}: $value | |
#{$property}: $value | |
=prefix-value($property, $value, $prefixes) |
Sass
%half { width: 50%; }
%full { width: 100%; }
#foo {
@extend %full;
@media screen (min-width: 600px) {
@extend %half;