使用bootstraps btn-group-justified layout时,是否可以使用不同宽度的按钮?

时间:2015-09-26 17:56:58

标签: css twitter-bootstrap

使用bootstraps btn-group-justified layout我有一组看起来像这样的按钮:

example button layout

但我需要它看起来像这样:

example button layout

是否可以更改bootstraps合理的布局以适应类似的内容?

我知道我可以不使用bootstraps对齐布局来实现,但我确实需要按钮组占据整个宽度并且与其他按钮组的宽度相同。

1 个答案:

答案 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>