I have a span tag that I'm adding a background image to. I know there are many ways of doing this but wondered if there is a way to make the background image which is a small pdf icon move to the right of the text instead of the left of it.
<span class='pdf'><a href="#">download pdf link</a></span>
.pdf{
background: url(img/sprite.png) no-repeat left bottom;
display:inline-block;
padding-top:10px;
padding-left:26px;
There are a few more sprites in the sprite image and this one is set to be position to the bottom.