Center a 'div' in the middle of the screen, even when the page is scrolled up or down?

前端 未结 5 1990
甜味超标
甜味超标 2020-12-12 13:38

I have in my page a button which when clicked displays a div (popup style) in the middle of my screen.

I am using the following CSS to center the

5条回答
  •  青春惊慌失措
    2020-12-12 14:00

    Correct Method is

    .PopupPanel
    {
        border: solid 1px black;
        position: fixed;
        left: 50%;
        top: 50%;
        background-color: white;
        z-index: 100;
        height: 400px;
        margin-top: -200px;
    
        width: 600px;
        margin-left: -300px;
    }
    

提交回复
热议问题