font-face在chrome中工作,但在firefox和ie中没有

时间:2015-01-15 12:47:26

标签: css internet-explorer firefox font-face

我认为标题已经说明了我的问题。

这是我的代码,我希望你能说出我做错了什么:

@font-face {
  font-family: 'Deer';
  src: url('fonts/Deer.eot') format('embedded-opentype');
  src: url('fonts/Deer.woff') format('woff'),
       url('fonts/Deer.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

IE正在下载ttf和woff文件,但不是eot,而firefox正在下载其中没有...

1 个答案:

答案 0 :(得分:1)

尝试

@font-face {
  font-family: 'Deer';
  font-weight: normal;
  font-style: normal;
  src: url('fonts/Deer.woff') format('woff'),
       url('fonts/Deer.eot') format('eot'),
       url('fonts/Deer.ttf') format('ttf');
}

我不认为超过1 src - @ font-face中允许参数。