Is it possible to set the width and height in pixels on an anchor tag? I'd like to have the anchor tag to have a background image while retaining the text inside the anchor.
You need to make your anchor display: block
or display: inline-block;
and then it will accept the width and height values.