JSFiddle - React, Tailwind, and code Playground

by Brenton Strine

HTML

<div class="box1"></div>
<div class="box2"></div>

CSS

div { width: 200px; height: 180px; }
.box1 {
    position: absolute;
    top: 0;
    left: 106px;
    padding: 1px;
    border-color: steelblue;
    border-width: 2px;
    border-style: solid;
}

.box2 {
    background-color: fuchsia;
    margin-left: 100px;
    margin-top: 300px;
}