I have an element (h3) and I want to set background position to the right, it's easy:
background: url('/images/icon-popular.png') no-repeat right center;
But I want to use .png file where I have a lot of other icons (Image Sprites), usually I do:
background-image: url('/images/icons-info.png');
background-position: 0 -110px;
How can I merge the background-position in the file with "right center" position in the element?