Bootstrap responsive table not scrolling vertically on iOS devices

后端 未结 3 1781
闹比i
闹比i 2021-02-19 04:07

This is what I have:

....
&
3条回答
  •  栀梦
    栀梦 (楼主)
    2021-02-19 04:47

    For anyone else having this problem, all I had to do to solve it was to add the following line to the css of the table-responsive class:

    -webkit-overflow-scrolling: touch;
    

    And now it works as expected.

提交回复
热议问题