JSFiddle - React, Tailwind, and code Playground
HTML
<div class="relative"> </div>
<div class="relative"> </div>
<div class="relative"> </div>
<div class="relative">
<div class="fixed"> </div>
</div>
CSS
.relative {
width:100%;
height:50px;
background: #ccc;
border: solid thin black;
position: relative;
}
.fixed {
position: fixed;
top:0;
left: 0;
width: 50px;
height:50px;
background: red;
}