How to position the div popup dialog to the center of browser screen?

后端 未结 9 1745
Happy的楠姐
Happy的楠姐 2020-12-13 16:39

I need to position div popup to the center of browser screen ( no matter what size the screen is). And I want to keep the position as absolute as I don\'t want to move the p

9条回答
  •  再見小時候
    2020-12-13 16:58

    .popup-content-box{
        position:fixed;
        left: 50%;
        top: 50%;
        -ms-transform: translate(-50%,-50%);
        -moz-transform:translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
         transform: translate(-50%,-50%);
    }
    

提交回复
热议问题