我开始使用图标字体。 我有点使用IE8 +,Chrome和Safari。但是它不适用于Firefox。
@font-face {
font-family: 'tr-icon';
src:url('/fonts/myFont.eot?16p15w');
src:url('/fonts/myFont.eot?#iefix16p15w') format('embedded-opentype'),
url('/fonts/myFont.woff?16p15w') format('woff'),
url('/fonts/myFont.ttf?16p15w') format('truetype'),
url('/fonts/myFont.svg?16p15w#myFont') format('svg');
font-weight: normal;
font-style: normal;
}
.tr-icon-blah:before {
font-family: 'tr-icon';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
moz-osx-font-smoothing: grayscale;
content: "\e605";
}
它显示为一个框中的字符代码。我尝试使用firefox访问我的所有src并且它有效。 不知道这里出了什么问题。
答案 0 :(得分:0)
您可以尝试从font-face声明中删除带有.eot文件类型的行,如果我没记错的话,FireFox过去就遇到过问题。