我正在使用使用 CSS3 的 @font-face 的自定义图标字体,并且在旧版本的 Google Chrome 中,只有 unicodes 显示并且没有被替换或呈现在我的自定义字体中,它显示了这些 unicodes 的字形。
这是我正在使用的@font-face 语法:
@font-face{
font-family:'glyphs';
src:url('../fonts/glyphs.eot');
src:url('../fonts/glyphs.eot?#iefix') format('embedded-opentype'),
url('../fonts/glyphs.svg#glyphs') format('svg'),
url('../fonts/glyphs.woff') format('woff'),
url('../fonts/glyphs.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
知道为什么显示 unicode 而不是图标字体中的符号吗?