Skip to content

Instantly share code, notes, and snippets.

@sa-tasche
Forked from anonymous/sprite.css
Created December 17, 2011 15:06
Show Gist options
  • Save sa-tasche/1490452 to your computer and use it in GitHub Desktop.
Save sa-tasche/1490452 to your computer and use it in GitHub Desktop.
CSS Sprite tech
.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