2016-05-12 62 views
6

在Bootstrap中,我如何得到如下的按鈕組,跨越父元素的全部寬度? (如用「.btn塊」級,但應用於一組http://getbootstrap.com/css/#buttons-sizes如何在Bootstrap中獲得跨父寬度的按鈕組?

<div class="btn-group" role="group" aria-label="..."> 
    <button type="button" class="btn btn-default">Left</button> 
    <button type="button" class="btn btn-default">Middle</button> 
    <button type="button" class="btn btn-default">Right</button> 
</div> 
+1

可能這[對齊按鈕組(https://開頭getbootstrap。 com/components /#btn-groups-justified) – vanburen

回答

16

Flexbox的能做到這一點。

.btn-group.special { 
 
    display: flex; 
 
} 
 

 
.special .btn { 
 
    flex: 1 
 
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" /> 
 
<div class="btn-group special" role="group" aria-label="..."> 
 
    <button type="button" class="btn btn-default">Left</button> 
 
    <button type="button" class="btn btn-default">Middle</button> 
 
    <button type="button" class="btn btn-default">Right</button> 
 
</div>

+0

最好的使用方法 –

+1

https://stackoverflow.com/a/45969088/6661239 這個工程沒有修改CSS – Stranger26

+0

我會upvote t如果可以的話他會兩次。這就像一個魅力 – lgants

1

您還可以使用.btn-group-justified

<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" /> 
 

 
<div class="container"> 
 
    <div class="btn-group btn-group-justified"> 
 
    <a href="button" class="btn btn-default">Left</a> 
 
    <a href="button" class="btn btn-default">Middle</a> 
 
    <a href="button" class="btn btn-default">Right</a> 
 
    </div> 
 
</div>
自舉4

0

在引導4,利用.d-flex.btn-group.w-100上各個按鈕:

.btn-group.d-flex(role='group') 
    button.w-100.btn.btn-lg.btn-success(type='button') 
    button.w-100.btn.btn-lg.btn-danger(type='button') 
    .btn-group(role='group') 
    button#btnGroupDrop1.btn.btn-lg.btn-light.dropdown-toggle(type='button', data-toggle='dropdown') 
     | &#8226;&#8226;&#8226; 
    .dropdown-menu 
     a.dropdown-item(href='#') An option 
     a.dropdown-item(href='#') Another option 
相關問題