Answers for "bootstrap modal overflow"

CSS
0

bootstrap modal overflow

.modal{
    display: block !important; /* I added this to see the modal, you don't need this */
}

/* Important part */
.modal-dialog{
    overflow-y: initial !important
}
.modal-body{
    height: 80vh;
    overflow-y: auto;
}
Posted by: Guest on August-09-2021

Browse Popular Code Answers by Language