Created
March 16, 2013 07:22
-
-
Save djGrill/5175376 to your computer and use it in GitHub Desktop.
Example for using Sass Mixins
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
@mixin border-radius($value) { | |
-webkit-border-radius: $value; | |
-moz-border-radius: $value; | |
border-radius: $value; | |
} | |
div { | |
@include border-radius(10px); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment