Bootstrap 3 modal vertical position center

后端 未结 30 1184
天涯浪人
天涯浪人 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:49

    Try something like this:

    .popup__overlay {
        position: fixed;
        left:  0;
        top:  0;
        width: 100%;
        height: 100%;
        z-index: 999;
        text-align: center
        }
    .popup {
        display: inline-block;
        vertical-align: middle
        } 
    

提交回复
热议问题