我正在使用icomoon创建自定义字体,但无法加载它。我已经用字体书检查过它,似乎还可以,但是我在加载它时遇到了麻烦。



@font-face {
  font-family: 'icomoon';
  src: url('icomoon.eot');
  src: url('icomoon.eot#iefix') format('embedded-opentype'), url('dilatefonts/icomoon.ttf') format('truetype'), url('icomoon.woff') format('woff'), url('icomoon.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}





enter image description here
enter image description here

最佳答案

看起来您的style.css和字体位于同一文件夹中。
请尝试从字体路径中删除dilatefonts。下面的例子-

  @font-face {
  font-family: 'icomoon';
  src: url('icomoon.eot');
  src: url('icomoon.eot#iefix') format('embedded-opentype'), url('dilatefonts/icomoon.ttf') format('truetype'), url('icomoon.woff') format('woff'), url('icomoon.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

09-25 22:20