HTML中给<html>设置font-size时,如果font-size的值小于浏览器设置的最小值,浏览器会将font-size调整为最小值。在chrome中默认最小值为12px,默认字体大小为16px。如下图:
可通过在chrome地址栏中输入:chrome://settings/fonts 来访问图中界面。
所以在上述情况下,下面的css在chrome中表现不同:
html {
font-size:100%;
}
此时html的font-size的值为16px;
html{
font-size:10px;
}
此时html的font-size的值为12px;
参考链接:
stackoverflow.com/questions/15451823/font-size-10px-cant-apply-always-12px
stackoverflow.com/questions/24542508/default-html-font-size
网友评论