JSFiddle - React, Tailwind, and code Playground

by Hugo Vale Pereira

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;

 
}