Sometimes, we want to make div fixed scrolling to that div with CSS.
In this article, how to make div fixed scrolling to that div,we will look at with the help of CSS.
How to make div fixed scrolling to that div with CSS?
With CSS, we can use the position: sticky
CSS property, to make div fixed scrolling to that div.
For instance, we write
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1;
to make the element with sticky position, to set the position
to sticky
and z-index
to 1 to show on top after we scroll to it.
Conclusion
With the help of CSS, we can use the position: sticky
CSS property, to make div fixed scrolling to that div.