When tab to a link on my webpage in Chrome, the tab hightlight box around this image link appears like this:
alt text http://www.chordfusion.com/images_so/wtf.png
(the orange border is what Chrome shows as the highlight box)
The HTML/CSS isn’t all that special:
<a href="download.html">
<img src="images/download_button.png" class="downloadbutton"/>
</a>
img.downloadbutton
{
margin-right: 0px;
border:none;
}
Any ideas?
My guess, either there’s a space at the end of the
imgline, or it’s HTML treating new lines as white space. Try putting the contents of theaall one line and see if it goes away then.