Why have my images got extra spacing? - Stack Overflow most recent 30 from stackoverflow.com2009-12-14T21:03:48Zhttp://stackoverflow.com/feeds/question/1079002http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1079002/why-have-my-images-got-extra-spacing0Why have my images got extra spacing?Antony Carthy2009-07-03T11:45:32Z2009-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#10790130Answer by tomzx for Why have my images got extra spacing?tomzx2009-07-03T11:49:10Z2009-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#10790182Answer by insin for Why have my images got extra spacing?insin2009-07-03T11:50:19Z2009-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#10790244Answer by RichieHindle for Why have my images got extra spacing?RichieHindle2009-07-03T11:50:55Z2009-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#10814700Answer by Sam DeFabbia-Kane for Why have my images got extra spacing?Sam DeFabbia-Kane2009-07-04T04:16:42Z2009-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>