Bootstrap modal: background jumps to top on toggle

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

    I tried all of the above examples - this is the only thing that worked for me:

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

    Removing the padding from the right side of the model - prevents the jump.

提交回复
热议问题