Created
February 25, 2014 02:46
-
-
Save hidoos/9201690 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.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; | |
} |
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
.imgStyle { | |
border: 2px solid red; | |
padding: 2px; | |
} | |
.imgRadius { | |
border-radius: 8px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
sass变量揭秘:http://www.w3cplus.com/preprocessor/sass-basic-variable.html