Created
January 26, 2015 23:19
-
-
Save xzyfer/aaabebe4415533d805d5 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.9) | |
| // Compass (v1.0.1) | |
| // ---- | |
| @mixin vendor($property, $value...){ | |
| -webkit-#{$property}:$value; | |
| -moz-#{$property}:$value; | |
| -ms-#{$property}:$value; | |
| -o-#{$property}:$value; | |
| #{$property}:$value; | |
| } | |
| @include vendor(border-radius, 50%/20px); |
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
| Properties are only allowed within rules, directives, mixin includes, or other properties. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment