首页 > 开发 > HTML > 正文

bootstrap字形图标不显示。。

2017-09-09 13:57:14  来源: 网友分享

怎么弄都不显示。。


解决方案

在HTML里面在写一遍,font-face的字体引用,我在IE8下也遇到这个bug。
<head>
<style type="text/css">
@font-face {
font-family: 'Glyphicons Halflings';

src: url('../fonts/glyphicons-halflings-regular.eot');
src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}
</style>
</head>