JSFiddle - React, Tailwind, and code Playground

by tonkec palonkec

HTML

<div class="absolute box">
    I am absolute
    <div class="absolute2 box">
        I am inside absolute        
    </div>
</div>

CSS

body {
   background: #2C3E50;
}

.box {
  width: 100px;
  height: 100px;
    color: #fff;
background: #4183D7;
    font-size: 18px;
    padding: 20px;
}

.absolute {
    position: absolute;
}

.absolute2 {
    left: 300px;
    top: 100px;
    position: absolute;   
}