Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

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;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #bootstrap #modal #overflow
ADD COMMENT
Topic
Name
5+2 =