I have two images in one - width is 16px, height is 24px (so each images is 16x12 px). I would like to display first the upper image - I am doing it this way:
background: url('image.png') left 0px top 12px no-repeat;
This works well. But now when I hover them menu item, I would like to hide the upper image and instead of that display the one beneath - and this is what I don't know how to set up. I've tried:
background: url('image.png') left 0px top 0px bottom 12px no-repeat;
or
background: url('image.png') left 0px bottom 12px no-repeat;
But without any success.
Every advice will be appreciated. Thanks