twitter bootstrap 3 modal popup scroll issues
I was using twitter bootstrap with a asp.net mvc project. As twitter bootstrap is very nice for the front end design, but it has some issues.
I faced a issue when working with modal popups. The modal popup size when large then the scroll bar wasn’t working for me. It’s was working some time sometime not. So I spend some time and got the solution. Actually solution was very simple but I spend approx 1 hour to found the correct solution.
Please find below the solution, it works like charm for me.
body.modal-open { overflow: auto; }
Hope it works for you as well.