views:

31

answers:

2

I got a PNG having multiple images encoded in it. How do I make use of all the images in a HTML, one for default, on mouse over use the other (I don't want to create different images and work).

Are there any examples?

+1  A: 

Sprites!

Anonymous
+1  A: 

If you mean you have a bunch saved together in one big image, check out CSS Sprites.

If you mean something else, good luck. Try reworking them into sprites. :D

D_N
Yes that's exactly what I'm looking for. Thanks!!
Panther24