Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

On, e.g., this link: http://4ad.com/releases/20949, if you look at the album cover image in the top right part of the page, the black border is not quite square: there are a few extra pixels of height at the bottom.

As far as I can tell the image is 300x300 pixels in size. There are no obvious (to us!) sources of the extra 4.5 pixels of height. Does anyone know what could be creating such a discrepancy?

share|improve this question

3 Answers

up vote 10 down vote accepted

Since the image is inline, it's treated as text, which means a few extra pixels are added to the bottom as leading. Displaying the image as a block (i.e. adding display: block;) solves the problem nicely.

share|improve this answer
1  
Yes it does! Thank you for an effective solution which also explains the nature of the problem - exactly what I needed! – thesunneversets Jun 30 '11 at 19:50
5  
Alternatively, use vertical-align: top or middle or bottom on the img. See jsfiddle.net/Gu6pG/1 for the difference. – Pumbaa80 Jun 30 '11 at 20:46
@Pumbaa80 - Why isn't that an answer? Helped me! :D – Travis J Feb 25 at 4:27
@TravisJ Your wish is my command. It is now an answer. – Pumbaa80 Feb 25 at 8:32

By default, images are displayed as inline-block and aligned with the baseline of the text. The extra space is added for Descenders.

To fix it, use vertical-align: top or middle or bottom on the img. See http://jsfiddle.net/Gu6pG/3 for the difference.

share|improve this answer
+1 - Helped me out when I was trying to figure out where some mysterious extra pixels were comming from. Using vertical align on the image element fixed it. :D – Travis J Feb 25 at 8:44

Change image to be displayed as block element by adding this setting to your style.css file:

/* consolidate this CSS style */
#rightbox_packshot img {
    width: 300px; /* from line 2896 in style.css */
    height: 300px; /* from line 1498 in style.css */
    display: block;
}
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.