Topic: IE manual text resizing (Page 1 of 1) |
|
---|---|
Paranoid (IV) Inmate From: age |
posted 09-07-2005 14:15
Alright, so I have googled this topic and had a look through some resources I could find (this for example but have not been able to find an answer to my question. |
Paranoid (IV) Inmate From: France |
posted 09-07-2005 14:53 |
Paranoid (IV) Inmate From: age |
posted 09-07-2005 15:33
Thank you very poi, that was very helpful! IE, hey?! I've gathered that em is a relative unit isn't it? That all sounds very stupid to me... Thanks for the tip anyway! |
Paranoid (IV) Inmate From: France |
posted 09-07-2005 15:49
Yep, em is a relative unit. Check the CSS2 specs - CSS2 syntax and basic data types - Values - Length for more details. code: body { font-size:11px !important; font-size:90%; } Since IE6 does not interpret correctly the !important rule, that way you set the font-size to 11px in the standard compliant browsers, and to 90% in IE. |
Paranoid (IV) Inmate From: age |
posted 09-07-2005 16:29
I didn't know you could do that. Thanks a lot, very interesting poi! |