JSFiddle - React, Tailwind, and code Playground

by Alexandru Gatea

HTML

<div class="container">
<div class="prechild"></div>
  <div class="child"></div>
  <div class="child"></div>
</div>

CSS

.container {
  height: 8000px;
  position: relative;
}

.child {
  height: 50vh;
  position: sticky;
  top: 0;
}

.child:nth-child(1) {
  background: blue;
}

.child:nth-child(2) {
  background: red;
}
.prechild {
  height: 50vh;
}