Horizontal scroll on overflow of table

后端 未结 6 1818
耶瑟儿~
耶瑟儿~ 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条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-30 13:13

    On a responsive site for mobiles the whole thing has to be positioned absolute on a relative div. And fixed height. Media Query set for relevance.

    @media only screen and (max-width: 480px){
      .scroll-wrapper{
        position:absolute;
        overflow-x:scroll;
      }

提交回复
热议问题