这就是令人沮丧的地方。我得到了一个 Sansation 的字体包,然后尝试将它与@font-face 一起使用。普通版有效,而“粗体”版则无效。我检查了文件名,它绝对是正确的。我的理解是任何字体都应该有效。我错过了什么吗?
@font-face
{
font-family: sansation_regular;
src: url('/fonts/sansation_regular-webfont.ttf'),
url('/fonts/sansation_regular-webfont.eot');
}
然后,我在不更改与文本元素对应的 CSS 中的 font-family 的情况下,将其更改为:
@font-face
{
font-family: sansation_regular;
src: url('/fonts/sansation_bold-webfont.ttf'),
url('/fonts/sansation_bold-webfont.eot');
}
感谢您的任何帮助。