JSFiddle - React, Tailwind, and code Playground
by Chris Ball
HTML
<div class="container">
<div class="stick one"></div>
<div class="stick two"></div>
<div class="stick three"></div>
</div>
CSS
body {
background: yellow;
margin: 0;
}
.container {
margin-top: 200px;
height: 300vh;
width: 300px;
}
.stick {
background: #000;
height: 30px;
margin: 10px 10px 50px;
width: 100%;
position: sticky;
}
.one {
top: 10px;
}
.two {
top: 45px;
}
.three {
top: 80px;
}