How to make html table vertically scrollable

前端 未结 9 523
北荒
北荒 2020-12-24 10:39

see jsbin

I have to make my html table vertically scrollable.
I have used below code on tbody tag but its doesn\'t work for me

 <         


        
9条回答
  •  無奈伤痛
    2020-12-24 11:12

    The best way to do this is strictly separate your table into two different tables - header and body:

    .body { height: 100px; overflow: auto }

    If your table has a big width (more than screen width), then you have to add scroll events for horizontal scrolling header and body synchroniously.

    You should never touch table tags (table, tbody, thead, tfoot, tr) with CSS properties display and overflow. Dealing with DIV wrappers is much more preferable.

提交回复
热议问题