这是我的代码:
@Font-face{Font-family: 'test';src: url('../Fonts/Fontname.ttf'),url('../Fonts/Fontname.eot');Font-weight: normal;Font-style: normal;}
并称之为:
#header{text-align:left;padding: 10px;Font-family:test;}
我究竟做错了什么?
解决方法 Internet Explorer使用字体的.woff版本,代码中未使用该字体,而不是使用版本.eot.我使用了 fontsquirrel的 @font-face generator工具来获取所有不同的字体变体输出应该如下所示:
@Font-face{Font-family: 'test';src: url('../Fonts/Fontname.eot'),url('../Fonts/Fontname.eot?#IEfix') format('embedded-opentype'),url('../Fonts/Fontname.woff') format('woff'),url('../Fonts/Fontname.ttf') format('truetype');Font-weight: normal;Font-style: normal;}总结
以上是内存溢出为你收集整理的html – @ font-face没有加载字体全部内容,希望文章能够帮你解决html – @ font-face没有加载字体所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)