CSS 字体速记属性

不知何故,人们似乎倾向于回避使用css字体速记。也许是因为它太难记住如何申报了。在这里,您可以省略除字体大小和字体系列之外的所有内容:

1font: italic small-caps bold 18px/120% "Josefin Sans", sans-serif;

相当于:

1font-style: italic;
2font-variant: small-caps;
3font-weight: bold;
4font-size: 18px;
5line-height: 120%;
6font-family: "Josefin Sans", sans-serif;
Published At
Categories with 技术
Tagged with
comments powered by Disqus