Created
March 29, 2015 06:37
-
-
Save airen/cf5d4f1ba421679e2b0b 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.12) | |
// Compass (v1.0.3) | |
// ---- | |
//声明一个混合宏 | |
@mixin border-radius { | |
-webkit-border-radius: 3px; | |
border-radius: 3px; | |
} | |
//调用混合宏 | |
button{ | |
@include border-radius; | |
} |
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
button { | |
-webkit-border-radius: 3px; | |
border-radius: 3px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment