center aligning a fixed position div

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

    This works if you want the element to span across the page like another navigation bar.

    width: calc (width: 100% - width whatever else is off centering it)

    For example if your side navigation bar is 200px:

    width: calc(100% - 200px);

提交回复
热议问题