Isn’t 1em supposed to be 16px across all browsers?
I have this CSS
* {font-size: 1em; }
label { font-size: .85em; }
which on IE8 strangely gives label elements a height of 12px vs. the 13.6px I was hoping for.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Not necessarily:
So while the default font size is 16px, perhaps you have a different size set on IE.
Also you may have some obscure parent element that is overriding it.
More info