Table fixed header and scrollable body

前端 未结 29 1877
粉色の甜心
粉色の甜心 2020-11-22 05:33

I am trying to make a table with fixed header and a scrollable content using the bootstrap 3 table. Unfortunately the solutions I have found does not work with bootstrap or

29条回答
  •  清歌不尽
    2020-11-22 05:52

    Cleaner Solution (CSS Only)

    .table-fixed tbody {
        display:block;
        height:85vh;
        overflow:auto;
    }
    .table-fixed thead, .table-fixed tbody tr {
        display:table;
        width:100%;
    }
    
    
    

    提交回复
    热议问题
    Col 1 Col 2 Col 3 Col 4
    Content 1 Content 1 Content 1 Content 1
    Longer Content 1 Longer Content 1 Longer Content 1 Longer Content 1