在Internet Explorer 7中,<span class="glyphicon glyphicon-shopping-cart"></span>
无效。
如何使这个工作?
答案 0 :(得分:1)
在你的CSS中尝试这个。有关此解决方案的详细信息,请参阅https://github.com/yargalot/glyphicons-bootstrap3-ie7。
.glyphicon {
font-family: 'Glyphicons Halflings';
font-style: normal;
text-decoration: inherit;
line-height: normal;
}
.glyphicon-shopping-cart {
zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
}
您的问题还可能在于浏览器的安全设置。请参阅Only some glyphicons showing in IE和bootstrap 3.2.0 glyphicons are not displaying in internet explorer
希望有所帮助