Bootstrap Modals keep adding padding-right to body after closed

后端 未结 30 2007
南方客
南方客 2020-12-12 12:36

I am using bootstrap and Parse framework to build a small webapp. But those Bootstrap modals keep adding padding-right to body after closed. How to solve this?

I tri

30条回答
  •  北荒
    北荒 (楼主)
    2020-12-12 13:01

    This is what worked for me:

    body.modal-open {
        overflow: auto !important;
    }
    
    // Bootstrap uses JS to set the element style so you can
    // override those styles like this
    body.modal-open[style] {
        padding-right: 0px !important;
    }
    

提交回复
热议问题