JSFiddle - React, Tailwind, and code Playground
HTML
<div class="block">
</div>
CSS
.block {
position: relative;
height:1000px;
}
.block::before {
position: sticky;
top: 0;
content: '123';
}
<div class="block">
</div>
.block {
position: relative;
height:1000px;
}
.block::before {
position: sticky;
top: 0;
content: '123';
}