css – IE8中1em的像素数是多少?

前端之家收集整理的这篇文章主要介绍了css – IE8中1em的像素数是多少?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在所有浏览器中,1em不应该是16px吗?

我有这个CSS

* {font-size: 1em; }
label { font-size: .85em; }

IE8上的标签元素高度为12px,相对于我希望的13.6px.

感谢帮助!

解决方法

Isn’t 1em supposed to be 16px across all browsers?

不必要:

One ‘Em'(1em) is equal to the height of the capital letter “M” in the default font size. When applied in CSS,the Em represents either the user’s default font size,or the size of the parent element’s font size,if one is available.

因此,虽然默认字体大小为16px,但您可能在IE上设置了不同的大小.

你也可能有一些不起眼的父元素覆盖它.

More info

原文链接:https://www.f2er.com/css/215363.html

猜你在找的CSS相关文章