> Use the same background on #container as you have on #content, so it
> appears as if the gap is gone. At the moment you have declared
> background twice on #container, so you should simply delete the second
> background-declaration.
>
> The gap will still be there, but - as with so many things in web  
> design
> - it's the appearance that counts here.

> IE6 (and older versions) doesn't react properly to 'overflow: hidden'
> and the 1% height given to it makes it hide everything instead of
> expanding the container.
>
> Correct / add to...
>
> * html #container{
>       height: 1%; /* So IE plays nice */
> }
>
> ...so it becomes...
>
> * html #container{
>       overflow: visible;
>       height: 1%; /* So IE plays nice */
> }

Thanks Gunlaug,

I followed your suggestions, and the gap is gone in Firefox and  
Safari.  IE6 unfortunately still has a gap though.  Let me know if  
there is anymore I can do.

Thanks,
Jason



______________________________________________________________________
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