vote up 0 vote down star

Can anyone tell me what is causing the space below the images? There seems to be extra padding in the divs with the red border relating to the images. I cant find this spacing in firebug at all.

Baffled.

alt text

flag

69% accept rate
Can you post the html code. – phoenix Jul 3 at 11:48

4 Answers

vote up 4 vote down check

By default, images align their bottom edges with the baseline of the text. That space you're seeing is the space below the baseline, used by decenders like q, p, y, etc. (The fact that you have no text is irrelevant - space for them is still reserved.)

You can get rid of it like this:

img {  /* Or a suitable class, etc. */
    vertical-align: bottom;
}
link|flag
thanks for letting me know the cause of this - I never really understood baseline etc before. – Antony Carthy Jul 3 at 12:20
vote up 2 vote down

It'l likely be the vertical alignment - check the computed style to see what it currently is for the images, then try adding this to your stylesheet:

img { vertical-align: text-bottom; }

See That mysterious gap under images and What is Vertical Align for some examples of what's happening.

link|flag
Thanks for the links and great answer :) – Antony Carthy Jul 3 at 12:21
vote up 0 vote down

Probably padding related, maybe it is the div containing the image? Could probably help if you posted a link, if possible.

link|flag
vote up 0 vote down

Using vertical-align bottom is one solution that works.

Since you don't appear to be using images inline with text though, the approach I'd take is to make the images block-level elements:

img {
    display: block;
}
link|flag

Your Answer

Get an OpenID
or

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