JSFiddle - React, Tailwind, and code Playground

by chrisfrisina

HTML

<div class="outer">
    <div class="column left">left</div>
    <div class="column right">right</div>
</div>

CSS

.outer {
    border-width: 5px;
    border-style: solid;
    width: 425px;
    height: 350px;
}
.column {
    border-width: 5px;
    border-style: solid;
    width: 175px;
    height: 300px;

}
.left {
    margin: 15px 0px 0px 15px;
}
.right {
    border-width: 5px;
    margin: -310px 0px 0px 215px;

}