CSS Position Sticky

Sticky elements switch between relative and fixed based on scroll.

Preview

Code

<style>
.box{
position:sticky;
top:0;
background:#16a34a;
color:white;
padding:10px;
}
</style>

<div class="box">Sticky header</div>
<p>Scroll to see sticky behavior.</p>

More CSS Position Examples (9)