JSFiddle - React, Tailwind, and code Playground
by digitalzebra
HTML
<div class="sticky">
some sticky text
</div>
<div class="large">
This is a large div to make a scroll bar appear
</div>
CSS
.sticky {
position: -webkit-sticky;
position: -moz-sticky;
position: -ms-sticky;
position: -o-sticky;
top: 15px;
}
.sticky {
background: green;
width: 100%;
}
.large {
height: 900px;
}