position: sticky to bottom left

前端 未结 6 1010
名媛妹妹
名媛妹妹 2021-01-04 00:57

I have just been playing around in FF32 & Safari 7, with position: sticky. And it works perfecly with top: 0px or left: 0px (to st

6条回答
  •  感情败类
    2021-01-04 01:50

    If you know the height of the sticky element then you can use something like this:

    .sticky-element {
      position: sticky;
      top: calc(100vh - 50px);
    }
    

    This would also work with Stickyfill. Not sure about browser support though.

提交回复
热议问题