When I place two anchored images on top of each other, separated by a line break, they do not align perfectly in Firefox. Unlike IE7 where they appear correctly stacked, there is an unwanted gap between the images in Firefox. My current workaround involves adjusting the line-height property, but I am looking for a solution that does not require this.
<a href="image.jpg">
<img height="75" width="75" src="image.jpg" />
</a>
<br/>
<a href="image2.jpg">
<img height="75" width="75" src="image2.jpg" />
</a>