Sticky Navbar

A sticky navbar stays at the top of the screen when scrolling.

Snippet:

position: sticky; top: 0; background-color: white; z-index: 1000;

Example:

nav { position: sticky; top: 0; background: #000; color: white; padding: 10px; }