Combine Images Using CSS Sprites

/* 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;
}

Author: admin

Leave a Reply

Your email address will not be published. Required fields are marked *