3

我正在使用购买字体(Museo Sans)作为我正在开发的应用程序中的自定义字体。我购买时提供给我的文件包含不同权重的网络字体文件:MuseoSans100Regular、MuseoSans300Regular 等。@font-face 中有没有办法指定用于不同权重的文件,以便我可以这样做:

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

而不是这样:

font-family: MuseoSans300;
4

1 回答 1

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*/
}
于 2012-09-17T15:41:48.867 回答