center aligning a fixed position div

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

    For the ones having this same problem, but with a responsive design, you can also use:

    width: 75%;
    position: fixed;
    left: 50%;
    margin-left: -37.5%;
    

    Doing this will always keep your fixed div centered on the screen, even with a responsive design.

    0 讨论(0)
提交回复
热议问题