font缩写顺序

.font{
font-style:italic;
font-variant:small-caps;
font-weight:bold;
font-size:12px;
line-height:1.5em;
font-family:arial,verdana;
}

上面的样式简写为:
 
.font{font:italic small-caps bold 12px/1.5em arial,verdana;}

转载于:https://www.cnblogs.com/leilin007/p/4481448.html

你可能感兴趣的:(font缩写顺序)