Bootstrap modal: background jumps to top on toggle

后端 未结 30 3325
栀梦
栀梦 2020-11-29 19:48

I have a problem, with a modal. I have a button on a page, that toggles the modal. When the modal shows up, the page jumps to top.

I have done everything I could to

30条回答
  •  一整个雨季
    2020-11-29 20:26

    When the modal opens a modal-open class is set to the tag. This class sets overflow: hidden; to the body. Add this rule to your stylesheet to override the bootstrap.css style:

    body.modal-open {
        overflow: visible;
    }
    

    Now the scroll should stay in place.

提交回复
热议问题