Horizontal scroll on overflow of table

后端 未结 6 1807
耶瑟儿~
耶瑟儿~ 2021-01-30 12:31

I have a basic table in a container. The table will have about 25 columns. I am trying to add a horizontal scroll bar on overflow of the table and am having a really tough time.

6条回答
  •  盖世英雄少女心
    2021-01-30 12:57

    Unless I grossly misunderstood your question, move overflow-x:scroll from .search-table to .search-table-outter.

    http://jsfiddle.net/ZXnqM/4/

    .search-table-outter {border:2px solid red; overflow-x:scroll;}
    .search-table{table-layout: fixed; margin:40px auto 0px auto;   }
    

    As far as I know you can't give scrollbars to tables themselves.

提交回复
热议问题