JSFiddle - React, Tailwind, and code Playground
HTML
<h1>Heading for Fixed Position</h1>
<h2>This is a heading with an absolute position</h2>
CSS
h2
{
position:absolute;
left:100px;
top:150px;
}
h1{
position:fixed;
top:300px;
}
<h1>Heading for Fixed Position</h1>
<h2>This is a heading with an absolute position</h2>
h2
{
position:absolute;
left:100px;
top:150px;
}
h1{
position:fixed;
top:300px;
}