谷歌字体的字体短语法

时间:2014-11-07 11:52:19

标签: css fonts

对于谷歌字体,font-family和font-weight是变量。短语法应该是

font: 400 "Open Sans", Helvetica, Arial, sans-serif;

但是我得到了无效的属性值,

有没有办法在短版本中声明font-weight和font family?我希望其他所有内容保持不变(字体样式等)

1 个答案:

答案 0 :(得分:1)

我认为在使用字体速记时必须指定字体大小。

font: 400 12px "Open Sans, Helvetica, Arial, sans-serif;

请参阅http://www.impressivewebs.com/css-font-shorthand-property-cheat-sheet/http://www.w3.org/wiki/CSS/Properties/font

你需要使用旧的font-weight和font-family而不是简写。