CSS3 字体嵌入
我试图简单地嵌入我已上传到服务器的字体。
所有内容均已正确加载,但显示的字体错误。我知道这种情况正在发生,因为当我删除 @font-face 代码时,渲染的 HTML 字体会发生变化。
这是我的代码,在过去的一个小时里我玩过很多不同的东西,所以大声说出你认为可能有用的东西。我也尝试过 .TTF 文件。
@font-face {
font-family: Joan;
src: url("../fonts/joan.otf") format('font/opentype');
}
body {
background: url('../images/bg.gif');
font-family: Joan;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
http://www.fontsquirrel.com/fontface/generator
到目前为止,我在相关领域中获胜冒险。
这是一个网站我正在使用它进行开发:http://bigballoon.businesscatalyst.com/
http://www.fontsquirrel.com/fontface/generator
Wins for me so far in my related adventures.
Here's a website I'm developing with it as we speak: http://bigballoon.businesscatalyst.com/
您可能必须将字体名称放在引号中。此外,为了兼容 MSIE,您需要将字体转换为 .eot 格式。这是“bulletproof”@font-face per paulirish.com。您可能需要根据完整/后记字体名称进行调整:
You may have to put the font name in quotes. Also, for MSIE compatibility, you'll need to convert the font to .eot format. Here's "bulletproof" @font-face as per paulirish.com. You may need to adjust depending on full/postscript font name: