Vertically centering Bootstrap modal window

前端 未结 30 2002
被撕碎了的回忆
被撕碎了的回忆 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条回答
  •  南笙
    南笙 (楼主)
    2020-12-07 07:30

    As of Bootstrap 4 the following class was added to achieve this for you without JavaScript.

    modal-dialog-centered
    

    You can find their documentation here.

    Thanks v.d for pointing out you need to add both .modal-dialog-centered to .modal-dialog to vertically center the modal.

提交回复
热议问题