Why have my images got extra spacing? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-14T21:03:48Z http://stackoverflow.com/feeds/question/1079002 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1079002/why-have-my-images-got-extra-spacing 0 Why have my images got extra spacing? Antony Carthy 2009-07-03T11:45:32Z 2009-07-04T04:16:42Z <p>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. </p> <p>Baffled.</p> <p><img src="http://antony.co.za/so.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1079002/why-have-my-images-got-extra-spacing/1079013#1079013 0 Answer by tomzx for Why have my images got extra spacing? tomzx 2009-07-03T11:49:10Z 2009-07-03T11:49:10Z <p>Probably padding related, maybe it is the div containing the image? Could probably help if you posted a link, if possible.</p> http://stackoverflow.com/questions/1079002/why-have-my-images-got-extra-spacing/1079018#1079018 2 Answer by insin for Why have my images got extra spacing? insin 2009-07-03T11:50:19Z 2009-07-03T11:55:33Z <p>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:</p> <pre><code>img { vertical-align: text-bottom; } </code></pre> <p>See <a href="http://gtwebdev.com/workshop/gaps/image-gap.php" rel="nofollow">That mysterious gap under images</a> and <a href="http://css-tricks.com/what-is-vertical-align/" rel="nofollow">What is Vertical Align</a> for some examples of what's happening.</p> http://stackoverflow.com/questions/1079002/why-have-my-images-got-extra-spacing/1079024#1079024 4 Answer by RichieHindle for Why have my images got extra spacing? RichieHindle 2009-07-03T11:50:55Z 2009-07-03T11:50:55Z <p>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.)</p> <p>You can get rid of it like this:</p> <pre><code>img { /* Or a suitable class, etc. */ vertical-align: bottom; } </code></pre> http://stackoverflow.com/questions/1079002/why-have-my-images-got-extra-spacing/1081470#1081470 0 Answer by Sam DeFabbia-Kane for Why have my images got extra spacing? Sam DeFabbia-Kane 2009-07-04T04:16:42Z 2009-07-04T04:16:42Z <p>Using vertical-align bottom is one solution that works.</p> <p>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:</p> <pre><code>img { display: block; } </code></pre>