John Moynihan wrote:
> http://www.paconnect.info/disclaimer-TEST_PAGE.html

> Does anyone have any suggestions as to what I am doing wrong and how 
> I can correct the problem and have the content stay inside of the 
> wrapper? Maybe have it adjust its length, based on the size of the 
> content area?

You have declared 'height' on #wrapper and #content2 (and on a lot of
other elements).
Only IE6 is buggy enough to expand those container beyond a declared
'height'. All other browsers will respect the 'height' and let the
content overflow its containers - and this is correct behavior.

The following addition/correction will work in all standard compliant
browsers...

body div#wrapper,body div#content2 {display: table; height: auto;}
body div#footer2 {clear: both;}

...and make auto-adjustment take place.

The 'body div' I've used as part of the selectors is there to add
specificity so it won't matter where you put this addition.

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