我目前正在使用Roboto Condensed字体为我的网站直接在php页面上使用google链接。而不是我想要使用的链接@ font-face所以从fontsquirrel下载了字体并将此代码添加到我的css中(是唯一有效的代码):
@font-face {
font-family: 'Roboto Condensed';
src: local('Roboto Condensed'), local('RobotoCondensed-Light-webfont'), url('roboto-fontfacekit/roboto_lightcondensed_macroman/RobotoCondensed-Light-webfont.eot?') format('eot'), url('roboto-fontfacekit/roboto_lightcondensed_macroman/RobotoCondensed-Light-webfont.woff') format('woff'), url('roboto-fontfacekit/roboto_lightcondensed_macroman/RobotoCondensed-Light-webfont.ttf') format('truetype');
}
我的问题是,我链接到哪种类型的字体(光线,普通,斜体或粗体)无关紧要,它总是看起来像普通字体。 默认情况下,轻量级的重量为300.当我直接在页面上从谷歌获得链接时,我已经制作了重量为200的字体,因为它看起来对我来说更好。但现在我不能。
我尝试在上面的代码中添加字体粗细或者从类中更改代码但没有更改。
有谁知道问题是什么以及如何解决这个问题? 感谢。