Horizontal scroll on overflow of table

后端 未结 6 1974
耶瑟儿~
耶瑟儿~ 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:00

       .search-table-outter {border:2px solid red; overflow-x:scroll;}
       .search-table{table-layout: fixed; margin:40px auto 0px auto;   }
       .search-table, td, th{border-collapse:collapse; border:1px solid #777;}
       th{padding:20px 7px; font-size:15px; color:#444; background:#66C2E0;}
       td{padding:5px 10px; height:35px;}
    

    You should provide scroll in div.

提交回复
热议问题