Glyphicon购物车无法在Internet Explorer 7(IE7)中运行

时间:2014-12-11 08:35:42

标签: twitter-bootstrap internet-explorer internet-explorer-7 glyphicons

在Internet Explorer 7中,<span class="glyphicon glyphicon-shopping-cart"></span>无效。

如何使这个工作?

1 个答案:

答案 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 = '&#xe116;');
}

您的问题还可能在于浏览器的安全设置。请参阅Only some glyphicons showing in IEbootstrap 3.2.0 glyphicons are not displaying in internet explorer

希望有所帮助