使用bootstraps btn-group-justified layout我有一组看起来像这样的按钮:
但我需要它看起来像这样:
是否可以更改bootstraps合理的布局以适应类似的内容?
我知道我可以不使用bootstraps对齐布局来实现,但我确实需要按钮组占据整个宽度并且与其他按钮组的宽度相同。
答案 0 :(得分:6)
btn-group-justified
类具有固定的表格布局,因此具有btn-group
类的子元素就像表格单元格一样。你只需要改变它们的宽度。
@import url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css');
body {
margin-top: 10px;
}
.btn-group-justified > .btn-group:nth-of-type(odd) {
width: .25%;
}
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="btn-group btn-group-justified" role="group" aria-label="">
<div class="btn-group" role="group">
<button type="button" class="btn btn-danger"><span class="glyphicon glyphicon-minus-sign"></span></button>
</div>
<div class="btn-group" role="group">
<button type="button" class="btn btn-default"><span class="badge">1</span> Bottle Mango</button>
</div>
<div class="btn-group" role="group">
<button type="button" class="btn btn-danger"><span class="glyphicon glyphicon-minus-sign"></span></button>
</div>
<div class="btn-group" role="group">
<button type="button" class="btn btn-default"><span class="badge">1</span> Bottle Junk</button>
</div>
</div>
</div>
</div>
</div>