When I tab to a link on my webpage using Chrome, the highlight box around this image link appears in an unexpected way:
Click here for Image
(the orange border is what Chrome displays as the highlight box)
The HTML/CSS code used is fairly standard:
<a href="download.html">
<img src="images/download_button.png" class="downloadbutton"/>
</a>
img.downloadbutton
{
margin-right: 0px;
border:none;
}
Any suggestions or solutions?