JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container">
<div class="absolute">
Testing absolute<br />
Even more testing absolute<br />
</div>
A little test<br />
</div>
CSS
.container {
background: green;
}
.absolute {
position: absolute;
background: red;
}