bootstrap 3,添加白色关闭按钮

时间:2014-02-17 07:52:52

标签: twitter-bootstrap-3

我想创建一个白色的关闭按钮。 我见过:http://getbootstrap.com/css/#helper-classes-close但是如何使用白色按钮而不是黑色?

如果我在class属性中添加“icon-white”,它就不起作用......

例如:

 <button type="button" ng-click="removeRow(newDelivery.transactions, $index)" class="close icon-white" aria-hidden="true">&times;</button>

由于

2 个答案:

答案 0 :(得分:0)

我知道:在按钮上添加“白色”类,而不是“icon-white”。

答案 1 :(得分:0)

请尝试以下操作:

<button type="button" class="close" aria-label="Close" ng-click="your call event">
   <span aria-hidden="true">&times;</span>
</button>