In Firefox only my video thumbnails are displaying mysterious 2-3 pixels of white space between the bottom of my image and its border (see below).

I've tried everything I can think of in Firebug with no luck.

How can I remove this white space?

Here's my page.

enter image description here

link|improve this question

FYI This only seems to affect Firefox, no problem in Chrome, Safari or Opera – Clive Oct 15 '11 at 0:17
That's correct, thank you. I revised my question. – Ryan Oct 15 '11 at 19:08
feedback

3 Answers

up vote 10 down vote accepted

You're seeing the space for descenders (the bits that hang off the bottom of 'y' and 'p') because img is an inline element by default. This removes the gap:

.youtube-thumb img { display: block; }
link|improve this answer
Awesome - that did the trick! Thank you :) – Ryan Oct 15 '11 at 19:07
I was writing my own question when a suggestion came up and I just veered in here. You are a saviour, Robert! – Abhranil Das Dec 12 '11 at 21:31
feedback

Give the height of the div .youtube-thumb the height of the image. That should set the problem in Firefox browser.

.youtube-thumb{ height: 106px }
link|improve this answer
or overflow:hidden – albert Oct 15 '11 at 0:19
feedback

Add vertical-align: middle to the img tag.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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