Created
January 12, 2012 22:20
-
-
Save pablohart/1603493 to your computer and use it in GitHub Desktop.
compass sprite example
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
@import "icons/*.png"; | |
h2 { @include icons-sprite(arrow-left-dark-green); } |
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
h2 { | |
background: url('icons/arrow-left-dark-green.png') no-repeat 10px 2px | |
} |
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
@import "icons/*.png"; | |
h2 { @include icons-sprite(arrow-left-dark-green, 10px 2px); } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment