4
我使用Bootstrap 3.我使用兩行像col-md-4
和col-md-2
行內。現在我正在嘗試將兩列中間的列居中。我已使用text-left
作爲col-md-2
,因爲其中的按鈕需要左對齊。我用以下代碼來居中列,但它不適合我。Bootstrap 3文本中心不與行
<div class="jumbotron">
<div class="row text-center">
<div class="col-md-4">
<div class="input-group input-group-lg">
<div class="input-group-btn text-left">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">option 1<span class="caret"></span></button>
<ul class="dropdown-menu">
<li><a href="#">option 1</a></li>
<li><a href="#">option 2</a></li>
<li><a href="#">option 3</a></li>
</ul>
</div><!-- /btn-group -->
<input type="text" class="form-control">
</div><!-- /input-group -->
</div>
<div class="col-md-2 text-left">
<button type="button" class="btn btn-default btn-lg"> Search <span class="glyphicon glyphicon-search"></span></button>
</div>
</div><!-- /row -->
</div>
你知道嗎有一種叫做col-md-offset-gridval的東西拉動組件? – jayeshkv
我知道如何使用偏移量,但它可以使用文本中心來居中列。 – Kango
我不認爲這是可能的,我認爲'文本中心'只適用於文本相關的領域,而不是列。您可能還想檢查其他方法[Here](http://stackoverflow.com/questions/18153234/center-a-div-using-bootstrap-3-markup-or-css) – jayeshkv