我的问题很简单,我将体型设置为google webfont:
body {
font: normal 100% 'Poiret One', 'Trebuchet MS', sans-serif;
color: Grey;
...
}
然后我想将类中的文本设置为Trebuchet MS
#currentpage_content {
font: 'Trebuchet Ms', Sans-Serif;
color: red;
...
}
结果是,#currentpage_content
中文本的颜色是正确的(它是红色的),但字体绝对是'Poiret One'。 该字体似乎没有从'Poiret One'
更改为'Trebuchet MS'
。我还稍微交换了一些东西,使得Trebuchet MS成为默认设置但是我遇到了相同的问题(即使我为Poiret One设置了许多类字体,一切都是Trebuchet MS。)
有什么建议吗?
答案 0 :(得分:2)
您必须使用font-family
而不是font
font-family: 'Trebuchet Ms', Sans-Serif;
或指定font
font: normal 100% 'Trebuchet Ms', Sans-Serif;
答案 1 :(得分:1)
尝试使用“font-family”而不仅仅是“font”。 另外,为了以防万一,请使用双引号而不是单引号。
css的一些好的调试工具和资源是:
firebug,这是firefox的插件