【发布时间】:2014-11-16 07:09:41
【问题描述】:
如何在不影响网格系统的情况下使表格可滚动? 如何在不干扰 col-xs 标签的情况下使表格可滚动?
<table class="col-xs-12">
<thead>
<th class="col-xs-2">A</th>
<th class="col-xs-1">B</th>
<th class="col-xs-1">c</th>
<th class="col-xs-2">d</th>
<th class="col-xs-2">e</th>
<th class="col-xs-1">f</th>
<th class="col-xs-1">g</th>
<th class="col-xs-1">h</th>
<th class="col-xs-1">i</th>
</thead>
<tbody>
<tr>
<td><input type="text" class="form-control""></td>
<td><input type="text" class="form-control"></td>
<td><input type="text" class="form-control"></td>
<td><input type="text" class="form-control"></td>
<td><input type="text" class="form-control"></td>
<td><input type="text" class="form-control"></td>
<td><input type="text" class="form-control"></td>
<td><input type="text" class="form-control"></td>
<td><input type="text" class="form-control"></td>
</tr>
</tbody>
</table>
【问题讨论】:
标签: css twitter-bootstrap html-table