引导按钮组大小因文本而异

时间:2015-01-29 07:48:41

标签: html css twitter-bootstrap

这是我使用bootstrap模板的按钮组:

    <div class="btn-group btn-group-xs">
        <button type="button" class="btn btn-primary btn-xs">
            <span class="glyphicon glyphicon-plus" aria-hidden="true"></span></button>
        <label class="btn btn-default">%100</label>
        <button type="button" class="btn btn-danger btn-xs">
            <span class="glyphicon glyphicon-minus" aria-hidden="true"></span></button>

   </div>

它看起来像这样:

enter image description here

按钮组的对齐方式不同。我想要固定标签尺寸。这是一个丑陋的外表。

1 个答案:

答案 0 :(得分:2)

尝试创建一个css类来设置文本内容的宽度:

.btn-group label{
    width: 100px;//or any other size
}