HTML table with fixed header and footer and scrollable body without fixed widths

后端 未结 4 2166
南旧
南旧 2020-12-15 19:05

I want to to create a table with fixed thead and tfoot and a scrollable tbody!

I\'ve tried several approaches, both CSS only a

4条回答
  •  庸人自扰
    2020-12-15 19:49

    HTML table with fixed header and footer and scrollable body without fixed widths using CSS only.

    This is simple logic we can use table header put position: sticky method below the example:

    table th {
    position:sticky;
    top: 0;
    }
    

提交回复
热议问题