后续代码中是否有任何错误?

@font-face {
    font-family: 'raveFire';
    src: url('ravefire.eot');
    src: local('raveFire'), url('ravefire.ttf') format('truetype');
}


此代码位于文件“ style.css”中,并且文件ravefire.ttf和ravefire.eot与“ style.css”位于同一文件夹中...

我尝试过在跨度,样式,类等中使用这种新的字体系列...我也尝试了几种浏览器...

请帮忙吗?

最佳答案

我最近一直在使用font-face,但我还没有看到“本地”参考,请尝试不使用它,即:

@font-face {
    font-family: 'raveFire';
    font-style: normal;
    font-weight: normal;
    src: url('ravefire.eot') format('eot'), url('ravefire.ttf') format('truetype');
}


确保字体与页面位于同一文件夹中,或使用绝对路径。

10-08 02:54