center aligning a fixed position div

前端 未结 13 665
走了就别回头了
走了就别回头了 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:15

    .container-div {position:fixed; left: 0; bottom: 0; width: 100%; margin: 0;} .center-div {width: 200px; margin: 0 auto;}

    This should do the same.

提交回复
热议问题