I am currently working on creating a hero container with a sticky navbar that seamlessly blends into the design. My goal is to keep the navbar fixed at the top of the screen as I scroll, ensuring it never moves past the hero container.
<section class="heroContainer">
<nav></nav>
</section>
Below is the CSS code:
.heroContainer{
position:relative;
}
nav{
position:sticky;
top:0;
left:0;;
}