center aligning a fixed position div

前端 未结 13 669
走了就别回头了
走了就别回头了 2020-11-29 15:55

I\'m trying to get a div that has position:fixed center aligned on my page.

I\'ve always been able to do it with absolutely positioned divs using this \

13条回答
  •  没有蜡笔的小新
    2020-11-29 16:21

    A solution using flex box; fully responsive:

    parent_div {
        position: fixed;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    child_div {
        /* whatever you want */
    }
    

提交回复
热议问题