Re: [css-d] ie7 vertical space

2007-02-07 Thread Gunlaug Sørtun
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/


[css-d] ie7 vertical space

2007-02-06 Thread Melinda Odom
Hi,

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.

Thanks!

Sincerely,
Melinda Odom
Design Hosting, Inc.
www.designhosting.biz
479-471-0891



-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.432 / Virus Database: 268.17.27/671 - Release Date: 2/5/2007
4:48 PM
 
__
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/