Position Fixed Not Working for Header

后端 未结 1 832
小蘑菇
小蘑菇 2021-01-30 07:09

I am trying to create a very simple effect where the navigation sticks to the top of the page as you scroll down the page. All I should have to do is set \"position: fixed\" to

相关标签:
1条回答
  • 2021-01-30 07:27

    At the moment, Chrome cannot render position:fixed on elements under a transformation. Delete the (content-free)

    -webkit-transform: translate3d(0, 0, 0);
    

    and it will work.

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