Skip to content

Instantly share code, notes, and snippets.

@hidoos
Created February 25, 2014 02:46
Show Gist options
  • Save hidoos/9201690 to your computer and use it in GitHub Desktop.
Save hidoos/9201690 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.5)
// Compass (v1.0.0.alpha.18)
// ----
// imagestyle 演示变量sass里变量的作用
//==========================================================
$imgStyleBorder:2px solid red;
$imgStyleBorder:1px solid #ccc !default;
$imgStylePadding:2px !default;
$imgStyleRadius:8px !default;
@mixin imgStyle($border:$imgStyleBorder,$padding:$imgStylePadding){
border:$border;
padding:$padding;
}
@mixin imgRadius($radius:$imgStyleRadius){
border-radius:$radius;
}
// 样式
//============================================================
.imgStyle{
@include imgStyle;
}
.imgRadius{
@include imgRadius;
}
.imgStyle {
border: 2px solid red;
padding: 2px;
}
.imgRadius {
border-radius: 8px;
}
@hidoos
Copy link
Author

hidoos commented Feb 25, 2014

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment