Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

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

6 Answers

up vote 51 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; }
share|improve this answer
Awesome - that did the trick! Thank you :) – Ryan Oct 15 '11 at 19:07
1  
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
1  
Works, but not good. I have 4 images in a div and I want them text-align: center which won't work for blocks. – Salman A Oct 10 '12 at 21:30
1  
Use vertical-align: middle if you need the image to play nicely with other things in the same box. In the rare case that the box contains several tiny images and no text, you might need to set font-size: 0 on the containing box. – Brilliand Nov 1 '12 at 22:51

You can use code below if you don't want to modify block mode:

img{vertical-align:text-bottom}
share|improve this answer
1  
This should be the accepted answer. – qwerty Mar 26 at 14:30
text-bottom still leaves another pixel below the image in Chrome. I would suggest vertical-align:bottom. – Stuart P. Bentley Apr 11 at 8:27
The first person to give this solution was Dave Kok, if you don't count my comment on the accepted answer (from a month earlier). – Brilliand May 3 at 16:03
.youtube-thumb img {display:block;} or .youtube-thumb img {float:left;}
share|improve this answer
The page in question is no longer visible - how can you be sure that this answer solves the problem? And why add to a question that has an accepted answer? – cale_b Oct 10 '12 at 18:58

If you would like to preserve the image as inline you can put vertical-align top or bottom on it. By default it is aligned on the baseline hence the few pixels beneath it.

share|improve this answer

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 }
share|improve this answer
or overflow:hidden – albert Oct 15 '11 at 0:19

Had this prob, found perfect solution elsewhere if you dont want you use block just add

img { vertical-align: top }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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