I need to resize an image that I am pulling from a tile set, originally sized at 50px x 50px. Is there a way to enlarge this image without adjusting the background size property? Perhaps by placing the image into a div and resizing the div instead?
img.tileone
{
width:50px;
height:50px;
background:
url(images/summertile.png) -1px -1px;
}
For instance, how can I resize a 50 x 50 tile to be 75 x 75?