IE9或更低版本不支持
.ttf
字体。有人建议我使用css3修复此问题吗?
答案 0 :(得分:0)
声明多个字体扩展名,以便IE9支持吗?
伪示例代码:
@font-face {
font-family: 'MyWebFont';
src: url('webfont.eot'); /* IE9 Compat Modes */
src: url('webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('webfont.woff') format('woff'), /* Modern Browsers */
url('webfont.ttf') format('truetype'), /* Safari, Android, iOS */
url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
}
使用FontSquirrels generator创建它们,也应该为您提供所需的CSS。