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

后端 未结 20 1349
抹茶落季
抹茶落季 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 02:08

    Prevents the background from scrolling without any fuss.

    Also prevents page jumping around from missing scrollbars

    body.modal-open {
            position: fixed;
            overflow-y: scroll;
        }
    
    0 讨论(0)
  • 2020-12-01 02:12

    I thought you might forget to add attribute data-toggle="modal" to the link or button that triggers the modal popup event. Firstly, I also got the same problem but, after adding the attribute above it works well for me.

    0 讨论(0)
提交回复
热议问题