Melinda Odom wrote:

> Can someone tell me why the vertical line in the body doesn't go all 
> the way down the 90% like set in the style but it does go down in 
> Mozilla?
> 
> http://www.designhosting.biz/test.html
> 
> The styles are in the page.  I put display: table; on the body tag 
> also but cannot find a solution.

IE7 doesn't understand 'display: table', and Firefox makes a mess out of
it. Delete that 'property: value' on #container.

Instead, try adding the following...

#container {
        overflow: hidden;
}

* html #container {
        overflow: visible;
}

...which /should/ work well across browser-land.

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