什么是font-size的默认px,pt:small?

时间:2015-05-10 12:17:44

标签: html css css3 fonts font-size

font-size:small的默认px,pt是什么?

.navigation li a{
font-weight:400;
font-family: "Segoe UI",Segoe,Tahoma,Arial,Verdana,sans-serif;
text-decoration:none;
**font-size:small;**
}

2 个答案:

答案 0 :(得分:2)

Jquery回答 - with open('input.txt') as infile, open('output.txt', 'w') as outfile: for quote in infile: grammar = next(infile) if quote.startswith('Child'): outfile.write(quote + grammar) - px 13px - pt

9.75
alert('px :-' +$('p').css('font-size'))
alert('pt :-' +parseInt($('p').css('font-size'))*3/4)
p{
    font-size:small;
}

答案 1 :(得分:2)

这取决于用户代理。

从书中Pro Css techniques

  

关键字根据a提供相对字体大小   用户代理的缩放因子。这个缩放因子有点像   移动目标,因为不同的用户代理可以提供不同的缩放   因素。甚至CSS规范也改变了它之间的建议   版本1和2.(CSS 1指定比例因子为1.5上升   和.66下降,但变为更模糊的“介于1.0和1.2之间”   在CSS 2规范中。)

     

因此,渲染类型的确切像素大小不同   使用绝对大小指定大小时浏览器到浏览器   关键字。如果我们假设默认(中等)em方块大小为16像素   (就像大多数桌面浏览器开箱即用),我们最终得到了   缩放因子为1.5的像素大小的以下转换   和1.2:

enter image description here