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

前端 未结 4 967
深忆病人
深忆病人 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: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

提交回复
热议问题