This is a two part question:
How can you position the modal vertically in the center when you don\'t know the exact height of the modal?
Is
If you're okay with using flexbox then this should help solve it.
.modal-dialog { height: 100%; width: 100%; display: flex; align-items: center; } .modal-content { margin: 0 auto; }