css – body {font-size:100.01%; } vs body {font-size:100%; }?

前端之家收集整理的这篇文章主要介绍了css – body {font-size:100.01%; } vs body {font-size:100%; }?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我应该保持身体,{font-size:100.01%; }或{font-size:100%; }?

什么是{font-size:100.01%; }?而且甚至在html {}中也提到font-size是非常好的

如果我正在使用body {font-size:62.5%;}

编辑:2010年5月3日

今天我在这里发现了约100.01%的信息 – http://www.communitymx.com/content/article.cfm?cid=FAF76&print=true

This odd 100.01% value for the font
size compensates for several browser
bugs. First,setting a default body
font size in percent (instead of em)
eliminates an IE/Win problem with
growing or shrinking fonts out of
proportion if they are later set in
ems in other elements. Additionally,
some versions of Opera will draw a
default font-size of 100% too small
compared to other browsers. Safari,on
the other hand,has a problem with a
font-size of 101%. The current “best”
suggestion is to use the 100.01% value
for this property.

保持身体{font-size:100.01%}代替{font-size:100%}很好

解决方法

声明体(或html){font-size:100.01%}补偿了舍入误差,特别是在旧版本的Opera和Safari中.否则会显示太小的字体.

相对字体大小(%,em)总是相对于父元素的字体大小来解释.所以在顶部元素中实现一种初始化复位并不是个坏主意,您可以使用body {font-size:100%}来实现.

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

猜你在找的CSS相关文章