It shows up fine in Firefox, but in IE6 there is a thin space under the graphic. http://www.bangfieldguide.com/test/ Suggestions? Thanks!
Using display block is a good solution in this case, but in others may not be. See gaps under images for the reason this happens and some other solutions that may be more appropriate under different situations. cheers, gary
I don't use display: block for images. I just set the vertical align property to bottom and call it a day (after killing any borders that may be present later on as well). Here's the CSS (unmodified) that I use for it: img { border: 0; vertical-align: bottom; } Code (markup):