Horizontal scroll on overflow of table

后端 未结 6 1978
耶瑟儿~
耶瑟儿~ 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 13:01

    I think your overflow should be on the outer container. You can also explicitly set a min width for the columns. Like this:

    .search-table-outter { overflow-x: scroll; }
    th, td { min-width: 200px; }
    

    Fiddle: http://jsfiddle.net/5WsEt/

提交回复
热议问题