我在react应用程序上导入图标时遇到了麻烦。我在index.html中从数据库中导入字体图标,如下所示:
<link href='https://website/static/fonts/icons.css' rel='stylesheet' type='text/css'>
,然后像这样给组件添加图标:
<span class="icon-0001"></span>
图标保存为:
.icon-0001:before {
content: "e900";
}
.icon-0002:before {
content: "e901";
}
有什么问题吗?
没有,我必须把链接移到index.js
,这就解决了问题。