-
-
Save sa-tasche/1490452 to your computer and use it in GitHub Desktop.
CSS Sprite tech
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
.sprite { | |
background: url(sprite.png) no-repeat; | |
width: 100px; | |
height: 100px; | |
} | |
#red { | |
background-position: 0px 0px; | |
} | |
#blue { | |
background-position: -150px 0px; | |
} | |
#green { | |
background-position: -300px 0px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment