表格想用bootstrap的,表头fixed之后,宽度会改变,有没有办法不用JS实时计算就可以实现表头固定呢?
固定表头下的效果如下:http://jsbin.com/tazikosema/edit?html,cs...
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th>表头</th>
<th>表头</th>
<th>表头</th>
</tr>
</thead>
<tbody>
<tr>
<td>内容</td>
<td>内容</td>
<td>内容</td>
</tr>
……
</tbody>
</table>
</div>
https://segmentfault.com/a/1190000004713...
你好像已经看过了