JSFiddle - React, Tailwind, and code Playground

HTML

<div class="relative">
    <h1>Heading for Fixed Position</h1>
<h2>This is a heading with an absolute position</h2>
    
</div>

CSS

h2
{
position:absolute;
left:100px;
top:150px;
}
h1{
position:fixed;
top:300px;
}
.relative{
     position:relative;   
}
}