My site here不会在Chrome中读取'proxima nova'otf,也无法理解原因。这是CSS:

@font-face {
    font-family:'Proxima Nova';
    src: url("/Fonts/ProximaNova-Regular.otf") format('opentype');
}

任何想法表示赞赏。

最佳答案

刚遇到同样的问题,您不需要指定otf字体的格式,只需删除src属性的最后一部分:

@font-face {
    font-family:'Proxima Nova';
    src: url("/Fonts/ProximaNova-Regular.otf");
}

此评论帮助我解决了这个问题:

https://github.com/facebook/create-react-app/issues/2609#issuecomment-311231425

10-05 20:53