我想创建一个白色的关闭按钮。 我见过: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">×</button>
由于
答案 0 :(得分:0)
我知道:在按钮上添加“白色”类,而不是“icon-white”。
答案 1 :(得分:0)
请尝试以下操作:
<button type="button" class="close" aria-label="Close" ng-click="your call event">
<span aria-hidden="true">×</span>
</button>