JSFiddle - React, Tailwind, and code Playground
HTML
<div>
<p>fixed</p>
</div>
CSS
div{
position:absolute;
top: 50vh;
left: 50vw;
background-color: red;
width:100px;
height:100px;
}
p{
position:fixed;
left: 100px;
top: 100px;
}