Created
June 27, 2013 15:30
-
-
Save scottkellum/5877445 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com, the Sass playground.
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.2.9) | |
// --- | |
@mixin background-position($width) { | |
width: $width; | |
background-position: ($width - 20px) center; | |
} | |
#foo { | |
@include background-position(100px); | |
} | |
#foo.bar { | |
@include background-position(50px); | |
} |
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
#foo { | |
width: 100px; | |
background-position: 80px center; | |
} | |
#foo.bar { | |
width: 50px; | |
background-position: 30px center; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment