I put an image inside the a tag. but when i gave border to the image and a tag. The A tag taking some extra space. it is not surrounding the image.how to overcome those extra space by ‘a’ tag. i am indicating a tag in red line.
My html:
<a href="#"><img src="http://img165.imageshack.us/img165/1043/burnhr6.png"/></a>
Css:
img
{
border:1px solid black;
}
a
{
border:1px solid red;
}
Is something like this what you are looking for?