JSFiddle - React, Tailwind, and code Playground

by tonkec palonkec

HTML

<div class="box" id="box1">
  some content
</div>

<div class="box" id="box2">
 some content
</div>

CSS

.box {
  width: 100px;
  height: 100px;
  position: relative;
}

#box1 {
  background-color: green;
  border: 1px solid #000;
 }

#box2 {
 /*UNCOMMENT ME
    top: -40px;
  left: 100px;*/
  background-color: yellow;
}