Table fixed header and scrollable body

前端 未结 29 1250
粉色の甜心
粉色の甜心 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 06:00

    Update

    For newer and still maintained library try jquery.floatThead (as mentioned by Bob Jordan in the comment) instead.

    Old Answer

    This is a very old answer, the library mentioned below no longer maintained.

    I am using StickyTableHeaders on GitHub and it works like charm!

    I had to add this css to make the header not transparent though.

    table#stickyHeader thead {
      border-top: none;
      border-bottom: none;
      background-color: #FFF;
    }
    

提交回复
热议问题