Sticky nav not working on mobile view
Inside of a div, I have header component and a nav component which I wish to make sticky but it is not working
1 Reply
Bear in mind that sticky will only be "sticky" within its parent element. Once the parent element scrolls out of view, the "sticky" element will scroll out with it.
From the code that you have provided the parent container is only as tall as its contents which is the sticky element itself so there will be nothing to stick.
Perhaps you are looking for "fixed". This will keep it in view at all times.