2
我在twitter引導中卡住表格。無論我嘗試什麼,我都無法在範圍內獲得我的表格,我認爲它與引導程序CSS有關,我需要我的表格行在範圍或英雄單位內是合理的。Twitter Bootstrap表格調整大小,行溢出
<div class="table-responsive">
<table id="table"
class="table table-bordered table-condensed table-striped form-group">
<tbody>
<tr>
<th>Sl. No.</th>
<th class="">Name</th>
<th>C/NC</th>
<th class="">Quantity</th>
<th>Price</th>
<th><input type="button" class="btn btn-success" id="addmorebutton"
value="Add" onclick="addRow();"/></th>
</tr>
<tr id="templateRow">
<td><input type="text" placeholder="In Words"></td>
<td class=""><input type="text" placeholder="In Words"></td>
<td>
<select class="input-sm col-lg-2">
<option>Consumable</option>
<option>Non Consumable</option>
</select>
</td>
<td class=""><input type="text" placeholder="In Numbers"></td>
<td><input type="text" placeholder="In Numbers"></td>
<td><input type="button" class="btn btn-danger" id="addmorebutton"
value="Delete" onclick="delRow(this);"/></td>
</tr>
</tbody>
</table>
</div>
您是否有鏈接到測試網站的鏈接?我不能告訴你所提供的代碼 –
你是否需要使用表格? Bootstrap帶有一個網格系統http://getbootstrap.com/css/#grid-options – Scott