防止引导按钮组中断

时间:2014-04-19 08:17:44

标签: css twitter-bootstrap twitter-bootstrap-3 frontend twitter-bootstrap-2

如果空间较小,如何防止自举按钮进入2行?

我正在尝试使用以下Bootstrap代码:

   <div class="btn-group" style=" width:100px ;">
        <button type="button" class="btn btn-default" style=" width:30px;">-</button>
        <input type="text" class="form-control" style="width:30px;">   
        <button type="button" class="btn btn-default" style=" width:30px;"> +</button>
    </div>

它看起来像:

enter image description here

1 个答案:

答案 0 :(得分:12)

这对我有用,将按钮组转换为弹性项目(默认情况下不会换行):

.btn-group {
  display: flex;
}

我在这里看到了这个,还有更多的选择: https://github.com/twbs/bootstrap/issues/9939