Bootstrap 3 modal vertical position center

后端 未结 30 1189
天涯浪人
天涯浪人 2020-11-28 00:15

This is a two part question:

  1. How can you position the modal vertically in the center when you don\'t know the exact height of the modal?

  2. Is

30条回答
  •  粉色の甜心
    2020-11-28 01:01

    Adding this simple css also works.

    .modal-dialog {
      height: 100vh !important;
      display: flex;
    }
    
    .modal-content {
      margin: auto !important;
      height: fit-content !important;
    }
    

提交回复
热议问题