我注意到你可以使用1em,它在不同的网站上看起来会有所不同.
什么是em比例?
>使用的字体?
>最大的字体大小?
>页面宽度/高度?
解决方法
见
http://w3schools.com/cssref/css_units.asp
1em is equal to the current font size. 2em means 2 times the size of
the current font. E.g.,if an element is displayed with a font of 12
pt,then ‘2em’ is 24 pt. The ’em’ is a very useful unit in CSS,since
it can adapt automatically to the font that the reader uses
EM与其定义的当前元素相关.如果使用相对大小(如0.9em),它们会相乘并导致意外的尺寸.
现在,字体的默认大小在浏览器之间不是标准的.在将字体设置为特定像素单元时,IE(至少是较旧的IE)存在问题. A good overview for font sizing can be found on A List Apart.