Skip to content

Instantly share code, notes, and snippets.

@airen
Created March 29, 2015 06:37
Show Gist options
  • Save airen/cf5d4f1ba421679e2b0b to your computer and use it in GitHub Desktop.
Save airen/cf5d4f1ba421679e2b0b to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.12)
// Compass (v1.0.3)
// ----
//声明一个混合宏
@mixin border-radius {
-webkit-border-radius: 3px;
border-radius: 3px;
}
//调用混合宏
button{
@include border-radius;
}
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