Bootstrap modal: background jumps to top on toggle

后端 未结 30 3416
栀梦
栀梦 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:15

    The easiest way to solve the jumping background is to define two parameters:

    body.modal-open {
      overflow: visible;
      padding-right: 0 !important;
    }
    

提交回复
热议问题