使用 @font-face 添加新字体不起作用
下面的代码有错误吗?
@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”位于同一文件夹中...
我尝试在span、style、class中使用这个新的字体系列等等...我也尝试了几种浏览器...
请问有什么帮助吗?
is there any error in the follow code ?
@font-face {
font-family: 'raveFire';
src: url('ravefire.eot');
src: local('raveFire'), url('ravefire.ttf') format('truetype');
}
this code is into the file "style.css" and, the files ravefire.ttf and ravefire.eot are in the same folder than "style.css" ...
Ive tried use this new font-family in span, style, class, etc ... I also tried several browsers...
please, any help ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我最近一直在使用 font-face ,但我没有看到“本地”参考,请尝试不使用,即:
确保您的字体与页面位于同一文件夹中,或使用它们的绝对路径。
I've been using font-face quite a bit recently and I've not seen the "local" reference, try it without, i.e.:
Make sure your fonts are in the same folder as the page, or use absolute paths to them.