JSFiddle - React, Tailwind, and code Playground
HTML
<div class="box box1">
</div>
<div class="box box2">
</div>
CSS
.box {
position: absolute;
border: 1px solid #ccc;
width: 100px;
height: 100px;
}
.box1 {
background: #000;
}
.box2 {
background: yellow;
/* UNCOMMENT ME
top: 200px;
left: 200px;*/
}