用bootstrap的响应式表格,如何固定表头?

表格想用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>
阅读 10.7k
4 个回答

bootstrap的网格系统不就是干这个的吗?

能不能看下你现在的效果呢

自己写一个position:fixed;样式就行了....

推荐问题
宣传栏