Daniel Hammond wrote:
> I used overflow:hidden to fix the side borders in FF and Opera, but 
> that made it so IE6 doesn't scroll at all.

When you use that method to contain floats, you must override it for IE6
(and older). IE6 will in cases like this otherwise hide everything
that's beyond 100% height, since that's what you're telling it to do.

* html #container {
height: 100%;
overflow: visible;
}

...will work fine.

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