JSFiddle - React, Tailwind, and code Playground

by tonkec palonkec

HTML

<div class="absolute box">
    <div class="relative box">
        
    </div>
</div>

CSS

.box {
  border: 1px solid #ccc;
  width: 100px;
  height: 100px;
}

.absolute {
    background: #000;
    position: absolute;
}

.relative {
    background: #aaa;
    left: 300px;
    top: 100px;
    position: relative;   
}