Twitter Bootstrap modal opening/closing causes fixed header to jump

后端 未结 14 2407
旧时难觅i
旧时难觅i 2021-01-08 01:39

I am almost done with a simple 2-page website for my registered domain names. Unfortunately I have one small issue I can\'t seem to fix: a jumpy header when a Twitter Bootst

14条回答
  •  耶瑟儿~
    2021-01-08 01:56

    Bootstrap adds class="modal-open" and padding-right: 15px; to body when the modal is shown. To remove the right shift and keep the scroll bar add this to your css:

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

    Tried in bootstrap 3.3.4

提交回复
热议问题