bootstrap modal overflow

Solutions on MaxInterview for bootstrap modal overflow by the best coders in the world

showing results for - "bootstrap modal overflow"
Matteo
15 Jul 2017
1.modal{
2    display: block !important; /* I added this to see the modal, you don't need this */
3}
4
5/* Important part */
6.modal-dialog{
7    overflow-y: initial !important
8}
9.modal-body{
10    height: 80vh;
11    overflow-y: auto;
12}
13
similar questions
show modal in bootstrap 4