admin 发表于 2018-7-30 19:06:54

font 的简写规则

font 的简写规则

font-style | font-variant | font-weight | font-size | line-height | font-family


font:italic small-caps bold 12px/1.5em arial,verdana;

等效于:

font-style:italic;

font-variant:small-caps;

font-weight:bold;

font-size:12px;

line-height:1.5em;

font-family:arial,verdana;

顺序:font-style | font-variant | font-weight | font-size | line-height | font-family

(注:简写时,font-size和line-height只能通过斜杠/组成一个值,不能分开写。)

不过使用这种简写需要注意几点:要使简写定义有效必须至少提供 font-size 和 font-family 这两个属性 ;同时font-weight, font-style 以及 font-varient 这几个属性如果不做设定的话将默认为normal。

页: [1]
查看完整版本: font 的简写规则