/* Example CSS for using a sprite sheet */
.icon {
background-image: url(‘sprite-sheet.png’);
background-repeat: no-repeat;
}
/* Specific icon within the sprite sheet */
.icon-home {
width: 32px;
height: 32px;
background-position: -10px -10px;
}
.icon-settings {
width: 32px;
height: 32px;
background-position: -42px -10px;
}