字体重量

时间:2012-09-17 15:24:25

标签: css font-face

我正在使用购买字体(Museo Sans)作为我正在处理的应用中的自定义字体。我购买时提供给我的文件包含不同权重的Web字体文件:MuseoSans100Regular,MuseoSans300Regular等。在@ font-face中是否有一种方法可以指定用于不同权重的文件,以便我可以这样做: / p>

font-family: MuseoSans;
font-weight: 300;

而不是:

font-family: MuseoSans300;

1 个答案:

答案 0 :(得分:7)

是的,您必须在两个不同的font-weight定义中为哪个@font-face指定哪个文件:

@font-face {
    font-family: 'MuseoSans';
    src: url('../font/museo_sans_100.woff');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'MuseoSans';
    src: url('../font/museo_sans_300.woff');
    font-weight: 300;
    font-style: normal;
}

h1, p {
    font-family: MuseoSans;
}

h1 {
    font-weight: 300; /* uses museo_sans_300.woff */
}

p {
    font-weight: 100; /* uses museo_sans_100.woff*/
}