font属性的简写方法

简写:

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只能通过斜杠/组成一个值,不能分开写。)

原文地址:https://www.cnblogs.com/shiloh/p/2497094.html