How to use CSS Sprites
Remember back in the days when we had to pre-load images using JavaScript because we used different images when we "onmouseover" menus? Well that time is long gone now. That can be easily completed by using only CSS!
The technique, also commonly called Sprites, is simply to use one big (optimized) image that stores multiples images positioned next to each other. Then, by using CSS, you set the position of where the image is in the background-position property.
Why using Sprites?
- No more JavaScript: no more pre-loading;
- Better optimization: once the image is loaded in cache, the browser reuse the same image over and over;
- Less number of requests to the server: no need to load tons of images, only need to load one;
- Easy to update: only one file to update;
- Smaller size: One image will take less space on the hard drive then more than 10 (including the physical space and the block space, and also no meta-data repeated);
- No lag between image switch: if you are using :hover, the image will load instantly;
What do you have to keep in mind when you use sprites?
- The CSS file will be a little heavier;
- The positioning of all images might be tricky at first;
- If you don't align all the images correctly, you will see image conflict on your site;
- All left aligned images should be on the right in your image;
- All right aligned images should be on the left in your image;
- Be careful when you use the repeat, repeat-x, repeat-y and background-position: top right; background-position: bottom left;
Here's a simple example using this website image
We will create a "Digg" button.
Using the site image, we find out the location of the digg button.
Let's build the CSS:
The idea is to update the X and Y position based on the location of where the image is located. The easy part with this, is you know right away if the position you entered is good. For example:
#sample a { height:32px; width: 32px;display:inline-block; } #sampleDigg { background: url('/download/boz.png') no-repeat -616px -251px; display: block; border: solid 1px #ddd; } #sampleDiggWrong { background: url('/download/boz.png') no-repeat -584px -205px; display: block; border: solid 1px #ddd; }
Why negative coordinates?
Think sprites images as an X/Y Graph. The top left corner is 0,0. Therefore, if you move the picture to the right and bottom, you are moving the images to the left and up. Which means updated the coordinates negatively.
Let's build the HTML
<a href="#link" id="sampleDigg"></a> <br /> <a href="#link" id="sampleDiggWrong"></a>
Here's the output
As you can see, the coordinates on the second image are wrong. Therefore, easy see visually see errors on the page.
Posterize your image
A simple trick most designer do when creating a CSS Sprite image, is to posterize it. Posterization of an image entails conversion of a continuous gradation of tone to several regions of fewer tones, with abrupt changes from one tone to another.
. This can benefit you to get a smaller image without loosing quality.
Conclusion
At first, Sprites will require a little of patience. Don't worry, you will get use to it.