How can I prevent body scrollbar and shifting when twitter bootstrap modal dialog is loaded?

前端 未结 11 1307
灰色年华
灰色年华 2020-12-23 16:42

When I open the twitter bootstrap modal dialog, the backdrop causes a scrollbar and shift the content.

To avoid the scrollbar I use this css:

.modal         


        
11条回答
  •  轮回少年
    2020-12-23 17:21

    I had the same issue with the scroll bar disappearing, and the body shifting to the left when opening a bootstrap modal.

    I've found out an easy fix:

    .modal
    {
        overflow-y: auto !important;
    }
    
    .modal-open
    {
       overflow:auto !important;
       overflow-x:hidden !important;
       padding-right: 0 !important;
    }
    

    Good luck to all!

提交回复
热议问题