Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been told that they do, but once the element with the CSS background image is made visible, the image seems to take time to load as if it's not cached.

Should I be preloading these, or doing something else to ameliorate the slowness when they're shown?

share|improve this question
i don't think they do.. at least it is not consistent among browsers – Ibu Jul 9 '11 at 3:15

1 Answer

up vote 2 down vote accepted

The solution i use, which is the common one nowadays is to use sprites as background-images;

this way the entire image is loaded, and all you need to do is to move the background position to see different areas

Here is a Tutorial on how to use them.

And a little example:

ul li {
   width: 50px;
   height: 20px;
   background: url(sprite.png) no-repeat 0px 0px;
}

ul li:hover {
   background-position: 0px -20px;
}

in this example the list item will have one background image, a button forexample, and when u hover over it the background is shifted 20px up to show the different version.

share|improve this answer
2 birds with one stone, thanks – babonk Jul 9 '11 at 4:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.