vote up 1 vote down star

I have two anchored images on top of each other, separated with a line break. I want the images to sit directly on top of each other, but in Firefox there is a gap between the images. It works in IE7. The only way I have been able to fix this is by changing the line-height (which I don't want to do).

<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>
flag

3 Answers

vote up 3 vote down check

Placing the CSS property vertical-align to bottom on the top image will remove the gap in Firefox.

link|flag
Turns out that using bottom, middle, or top works. Thanks. – Chris B Jul 10 at 20:35
Glad I could help -- oddly enough it trips me up for a couple of minutes every time. – matth1jd Jul 10 at 20:40
Edit: bottom, middle, or top works as long as it's applied to ALL of the images. I wish you could edit comments on SO :) – Chris B Jul 10 at 20:45
vote up 0 vote down

You could store them in a list element with the bottom margins set to zero. Using a br to format your layout is considered bad practice.

Alternatively you could wrap them in

elements, they would stack. But I don't how 'correct' that is standards wise.

link|flag
1  
Using a <br /> to indicate a line break is absolutely not a bad practice. Using multiple <br />s instead of a single paragraph <p> is, however. If this is a list of images, you should indeed store them in a list (<ul> or <ol>) with display: none on the list items (<li>). – Ronald Jul 10 at 20:53
Set those list items (<li>) to display: block, of course! – Ronald Jul 10 at 20:54
vote up 0 vote down

Perhaps setting the images to display:block would work. As an image is by default inline with the text, it leaves space at the bottom for descendenders (such as j,g,and y), even though an image will never have any. Many browsers account for this, but doing so is non-standard. Setting them to block should remove this annoyance in all browsers.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.