Force div element to stay in same place, when page is scrolled

前端 未结 4 968
深忆病人
深忆病人 2020-12-13 18:59

I created a div element, that I placed all the way on the right of my site. The only problem is that its at the top of the site, so if i scroll down it remains

相关标签:
4条回答
  • 2020-12-13 19:09

    Use position: fixed instead of position: absolute.

    See here.

    0 讨论(0)
  • 2020-12-13 19:14

    You can do this replacing position:absolute; by position:fixed;.

    0 讨论(0)
  • 2020-12-13 19:20

    There is something wrong with your code.

    position : absolute makes the element on top irrespective of other elements in the same page. But the position not relative to the scroll

    This can be solved with position : fixed This property will make the element position fixed and still relative to the scroll.

    Or

    You can check it out Here

    0 讨论(0)
  • 2020-12-13 19:23

    Change position:absolute to position:fixed;.

    Example can be found in this jsFiddle.

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