我在项目中第一次使用了ico moon字体。
我的icomoon css文件:
@font-face {
font-family: 'icomoon';
src: url('fonts/icomoon.eot?nmzwdp');
src: url('fonts/icomoon.eot?nmzwdp#iefix') format('embedded-opentype'),
url('fonts/icomoon.ttf?nmzwdp') format('truetype'),
url('fonts/icomoon.woff?nmzwdp') format('woff'),
url('fonts/icomoon.svg?nmzwdp#icomoon') format('svg');
font-weight: normal;
font-style: normal;
}
[class^="inf-"], [class*=" inf-"] {
/* use !important to prevent issues with browser extensions that change fonts */
font-family: 'icomoon' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.inf-chrome:before {
content: "\ead9";
}
.inf-chrome{ text-indent: 0 !important;
background-image: none !important;
font-size: 16px;
}
使用icomoon字体的主要代码:
<p:commandButton value="Temps3" icon="inf-chrome"
style="height: 25px;width: auto;"/>
最终我的ico月亮字体不显示,请任何人给出答案。
答案 0 :(得分:0)
尝试添加inf类,除了特定于按钮的类inf-chrome之外,这对于您的所有图标应该是通用的
<p:commandButton value="Temps3" icon="inf inf-chrome" style="height: 25px;width: auto;"/>
答案 1 :(得分:0)
看起来你没有class
属性:
<p:commandButton class="inf-chrome" value="Temps3" icon="inf-chrome" style="height: 25px;width: auto;"/>
在CSS中是选择器
[class^="inf-"], [class*=" inf-"]
这有必要吗?
.inf-chrome {
text-indent: 0 !important;
background-image: none !important;
font-size: 16px;
}
还要确保您的icomoon字体已正确加载。