民间, 我已经在我的一个元素中添加了bootstrap图标,但它没有显示出来。
以下是代码:
<span ng-repeat="element in header" class="header-cells" style="width:{{element.width}}px">
<span>{{element.column}}
<i class="icon-angle-down"></i>
</span>
</span>
图标 - 角度向下不会显示。
答案 0 :(得分:1)
认为你已经使用过Bootstrap 3.只需查看最新版本的文档,最新版本不支持图标的“i”类。相反,你给出如下。
<span class="glyphicon glyphicon-arrow-down"></span>
<span class="glyphicon glyphicon-chevron-down"></span>
<span class="glyphicon glyphicon-collapse-down"></span>
如果您使用的是bootstrap 2.使用过的代码将完美运行。 阅读Glyphicon
的文档