Skip to content

Instantly share code, notes, and snippets.

@airen
Created August 8, 2014 14:01
Show Gist options
  • Save airen/eaa456479321b11f7a34 to your computer and use it in GitHub Desktop.
Save airen/eaa456479321b11f7a34 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.0.rc.3)
// Compass (v1.0.0.rc.1)
// ----
//http://designwoop.com/2014/07/10-useful-sass-mixins-modern-developer/
@mixin css3($property, $value) {
@each $prefix in -webkit-, -moz-, -ms-, -o-, '' {
#{$prefix}#{$property}: $value;
}
}
.border_radius {
@include css3(transition, 0.5s);
}
.border_radius {
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-ms-transition: 0.5s;
-o-transition: 0.5s;
transition: 0.5s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment