How to prevent background scrolling when Bootstrap 3 modal open on mobile browsers?

后端 未结 20 1449
抹茶落季
抹茶落季 2020-12-01 01:45

How to prevent background scrolling when Bootstrap 3 modal open on mobile platforms? On desktop browsers the background is prevented from scrolling and works as it should.<

20条回答
  •  庸人自扰
    2020-12-01 01:48

    The above answers did not help so what I did was:

    .modal {
      -webkit-overflow-scrolling: touch; 
    }
    

    My particular problem was when I increased the modal size after loading.

    It's a known iOS issue, see here. Since it does not break anything else the above solution was enough for my needs.

提交回复
热议问题