Twitter bootstrap 3 引导3,添加一个白色关闭按钮

Twitter bootstrap 3 引导3,添加一个白色关闭按钮,twitter-bootstrap-3,Twitter Bootstrap 3,我想创建一个白色的关闭按钮。 我看到了:但是如何用白色按钮代替黑色按钮呢 如果我在类属性中添加“白色图标”,它将不起作用 例如: <button type="button" ng-click="removeRow(newDelivery.transactions, $index)" class="close icon-white" aria-hidden="true">&times;</button> ×; 谢谢我知道:将“白色”类添加到按钮,而不

我想创建一个白色的关闭按钮。 我看到了:但是如何用白色按钮代替黑色按钮呢

如果我在类属性中添加“白色图标”,它将不起作用

例如:

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

我知道:将“白色”类添加到按钮,而不是“白色图标”。

尝试以下操作:

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

&时代;