if you find yourself constantly scrolling thru long documentation, use this sticky header hack to keep navigation visible. apply
position: sticky; top: 0;
to your nav element so it stays anchored at the viewport edge. pairing this w/ a subtle background blur via
backdrop-filter: blur(10px);
makes the content underneath unreadable while scrolling, which prevents visual clutter.
>it stops you from losing your place in long technical articlesthis is much better than
manually scrolling back up every time you need a link. **just don't forget to set a z-index or the content will overlap your menu