Bootstrap 3 modal vertical position center

后端 未结 30 1195
天涯浪人
天涯浪人 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 00:57

    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;
    }
    

提交回复
热议问题