Vertically centering Bootstrap modal window

前端 未结 30 2011
被撕碎了的回忆
被撕碎了的回忆 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:44

    e(document).on('show.bs.modal', function () {
            if($winWidth < $(window).width()){
                $('body.modal-open,.navbar-fixed-top,.navbar-fixed-bottom').css('marginRight',$(window).width()-$winWidth)
            }
        });
        e(document).on('hidden.bs.modal', function () {
            $('body,.navbar-fixed-top,.navbar-fixed-bottom').css('marginRight',0)
        });
    

提交回复
热议问题