CSS Position Sticky
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>
<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>