position: sticky to bottom left

前端 未结 6 1009
名媛妹妹
名媛妹妹 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:37

    .sticky-container {
      position: sticky;
      top: 100vh; // push it to the bottom from top
      transform: translateY(-100%); // move it up again depending on its own height
      width: 100%;
      background: white;
      padding: 20px 0;
    }
    

提交回复
热议问题