Is it possible I can resize a background image of a <li>
of which is in a sprite?
I have this HTML:
<li class="bg_image"></li>
and this is the CSS:
.bg_image {background:url('sprite.png') no-repeat;
background-position:-422px -46px;width:32px;height:32px;}
The image on the sprite has width and height 48px because is used elsewhere in the site. I'd rather use the same instead of making a new HTTP request of the same image with smaller size, or increase the size of the sprite.
Is it possible I can resize it from 48px width and height to 32px ?
Thanks alot