How to center a modal window on a page?

前端 未结 8 1818
太阳男子
太阳男子 2021-02-07 05:43

I am trying center a modal window in the browser page. I just want to center it, so that it should be responsive for all the screens.

8条回答
  •  眼角桃花
    2021-02-07 06:26

    With position:absolute Assuming your modal is 300x300

    .modal {
       width: 300px;
       height: 300px;
       position: absolute;
       left: 50%;
       top: 50%; 
       margin-left: -150px;
       margin-top: -150px;
    }
    

    With display:table An alternative way for that is to make display table

    
    
    

提交回复
热议问题