Created
August 8, 2014 14:01
-
-
Save airen/eaa456479321b11f7a34 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// 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); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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