Robert Lane wrote:
> I added the fixes mentioned below and now it is much better, but in 
> IE7 the there is still a small gap below the floated image and above 
> the footer.   It is correctly rendered in Firefox.  How can I get 
> them to butt together with no gap?
> 
> Link is here: http://tinyurl.com/2go7kn

Images are inline-elements by default, and IE/win is correctly placing
it on a text-baseline with room for descenders - giving you a "gap".
Firefox, and most other browsers, are applying a "transitional" (doctype
dependent) trick on lone images, so no "gap" will show up in those browsers.

Add...
#slides img {display: block;}
...to get rid of the gap. Works the same in all browsers and regardless
of doctype-trickery.

regards
        Georg
-- 
http://www.gunlaug.no
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to