Created
July 28, 2014 22:52
-
-
Save alice-liu/37660fc2c4aeade13ca7 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains 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.10) | |
// Compass (v1.0.0.alpha.20) | |
// ---- | |
$color: red; | |
$background-image: image-url('foo.png'); | |
$offsets: -8px -20px; | |
.stuff { | |
background: $color $background-image no-repeat $offsets; | |
} |
This file contains 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
.stuff { | |
background: red url('/images/foo.png') no-repeat -8px -20px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment