This is what I want to do. An Image section on top before the navigation bar. After scrolling on the image section on top the navigation bar will stick on top. How can I do that?
Asked
Active
Viewed 225 times
-2
-
What you tried so far? Can you please share your code? – Swanand Taware Mar 17 '18 at 03:53
-
Please go through this link https://stackoverflow.com/questions/19158559/how-to-fix-a-header-on-scroll – Swanand Taware Mar 17 '18 at 03:57
1 Answers
0
Set the element to position: sticky
and then give it the position you want it to stick at (top: 4rem
, etc.). It will have relative position within its block, then and then will stick in position as the block is scrolled past.

John Meade
- 142
- 6