我喜欢自举按钮组样式,我不喜欢主动切换。除非我点击按钮,否则我无法禁用活动状态。
如何禁用按钮切换?
<div class="btn-group" aria-label="..." style="margin-bottom: 20px;">
<button type="button" class="btn btn-primary" onclick="import_all_db(this)">import_all_db</button>
<button type="button" class="btn btn-primary" onclick="import_all_qcloud(this)">import_all_qcloud</button>
<button type="button" class="btn btn-primary" onclick="import_all(this)">import_all</button>
</div>
答案 0 :(得分:0)
您要查找的CSS声明为.focus
,:focus
:
.btn-primary.focus, .btn-primary:focus {
color: #fff;
background-color: #286090;
border-color: #122b40;
}
如果你想改变它,那么否决它 - 如例子中所示 - &gt; http://jsfiddle.net/w7rzqLz3/ - 您可以将其设置为与其他状态具有相同的background-color
和border-color
。