我正在尝试在我的网站上使用我自己的图标而不是图像,但是当我从Fontastic或Iconmoon加载图标时,它在chrome或safari中都不起作用,我是否需要引导程序或者我的错误码?
这是来自Fontastic的CSS
@font-face {
font-family: "untitled-font-1";
src:url("untitled-font-1.eot");
src:url("untitled-font-1.eot?#iefix") format("embedded-opentype"),
url("untitled-font-1.woff") format("woff"),
url("untitled-font-1.ttf") format("truetype"),
url("untitled-font-1.svg#untitled-font-1") format("svg");
font-weight: normal;
font-style: normal;
}
以及我如何调用图标
<i class="icon-closeicon"></i>
答案 0 :(得分:1)
添加自定义图标字体(例如来自icomoon的内容)时,您必须做一些事情。
确保您要导入必要的css规则( ex。 .icon-location:before {content: "\e947";}
)
确保您的元素具有正确的font-family
值(刚加载的图标字体)
确保您的元素具有正确的.class
名称(您要调用的图标的名称)
我怀疑你错过了其中一个步骤(特别是考虑到你没有链接你问题中的代码)。
Here is an example fiddle of how a complete import of an icon font should look.