Bootstrap : how to disable vertical scrollbar?
I have the same problem with bootstrap 3.0.0. It seems that .modal
class has overflow-y: scroll
rule which results in scrollbar always visible.
So, you can amend this either locally:
<div class="modal" ... style="overflow-y: auto;">
...
</div>
or globally:
<style>
.modal {
overflow-y: auto;
}
</style>
In your css add :
body {
overflow-y:hidden;
}