center aligning a fixed position div

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

    If you know the width is 400px this would be the easiest way to do it I guess.

     left: calc(50% - 200px);
    

提交回复
热议问题