How to scroll table's “tbody” independent of “thead”?

前端 未结 5 410
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-01 01:15

As specified in the W3 specification for Tables:

Table rows may be grouped into a table head, table foot, and one or more table body sections, using

5条回答
  •  隐瞒了意图╮
    2020-12-01 02:06

    mandatory parts:

    tbody {
        overflow-y: scroll;  (could be: 'overflow: scroll' for the two axes)
        display: block;
        with: xxx (a number or 100%)
    }
    
    thead {
        display: inline-block;
    }
    

提交回复
热议问题