I am using Bootstrap v3.0.2 . Want to disable background scrolling when the modal is open. I tried:
.modal-open { overflow: hidden; }
But it does not work. I found a solution to this problem:
.modal-open { overflow: hidden; position:fixed; width: 100%; }
But position: fixed; causes additional white space at the bottom of the page in chrome (less than 100% view), as well as for large displays (in 100% mode) when opening and closing the modal. How to get rid of it? (My modal contains scrollable fields)
source share