Vertically centering Bootstrap modal window

前端 未结 30 2001
被撕碎了的回忆
被撕碎了的回忆 2020-12-07 07:00

I would like to center my modal on the viewport (middle) I tried to add some css properties

 .modal { position: fixed; top:50%; left:50%; }   
30条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-07 07:47

    .modal.in .modal-dialog {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }

提交回复
热议问题