我正在開發一個項目。我使用bootstrap 3.0.0。刪除引導元素之間的空間
我有這樣的HTML:
<div style="padding-top:5px;">
<form class="form-inline">
<div class="col-lg-5 col-md-5 col-sm-5 col-xs-5 pull-right">
<div class="input-group input-group-sm">
<input type="text" class="form-control" placeholder="search">
<div class="btn btn-default input-group-addon">
<i class="glyphicon glyphicon-search"></i>
</div>
</div>
</div>
<div class="btn-group input-group-sm pull-left">
<button id="btnAllItems" ng-click="list.getItems(list.itemsStatus[0].id);" type="button" class="btn btn-info" ng-class = "{'active' : list.currentItemsStatus.id === 1}">all</button>
<button id="btnNewItems" ng-click="list.getItems(list.itemsStatus[1].id)" type="button" class="btn btn-info" ng-class = "{'active' : list.currentItemsStatus.id === 2}">new</button>
<button id="btnUpdateItems" ng-click="list.getItems(list.itemsStatus[2].id)" type="button" class="btn btn-info" ng-class = "{'active' : list.currentItemsStatus.id === 3}">update</button>
</div>
</form>
</div>
<table class="table table-responsive table-striped" style="margin-bottom:1px!important">
<thead>
<tr style="background:#ADD8E6">
<th>Area</th>
<th>Address</th>
<th>SIM</th>
</tr>
</thead>
</table>
下面是代碼的feedler例子。
這裏是如何看的圖像:
正如你可以從上面的圖片中看到,在搜索框中有從左側從右側一個狹小的空間和更多的空間。
我的問題是:如何從左側和右側刪除空間?
你可以請張貼在jsfiddle嗎? – Michael
試過它不工作 – Michael
@Micheal看看這個分叉小提琴:https://jsfiddle.net/d374ua75/ – Extricate