How to center a modal window on a page?

前端 未结 8 1685
太阳男子
太阳男子 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:47

    when showing you modal you should put display:flex instead of block like most people usualy do. then :

    
    

    and CSS :

    .modal {
     width: 100%;
     height: 100%;
    
     justify-content: center;
     align-items: center;
    }
    

    remember to put a close button in your modal-content because the other element on the screen won't be usable as the modal div covers all the screen size.

提交回复
热议问题