Hi,

It's amazing how much companies spend to just make web developers lives as 
difficult as possible?

IE has a problem in resizing, ems, and even after you've set the body tag, 
you will need to set it for any:

tables, select, & input. Also be aware that Safari sets it's default to 
14px;, which really helps.

I'm trying these with some success:

html
{
 font-family:;
        font-size:100% ;/***for IE****/
}

body
{
font-family:;
font-size:1em; /***sets font in un-altered browsers to 16px, Times New 
Roman***/

html>body
{
font-size: 16px; /***IE can't read this so it sets Safari to default 
16px***/ (I hope)

then if using forms:

select {
font-family:;
font-size:100%; /***for IE***/
}

and the same for submit.

I offer no guarantees, but from all the information I can find this is it, 
far short of using % for everything, tried that and it's very difficult, and 
way-ward in alignment.....

DG)
------


______________________________________________________________________
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