JSFiddle - React, Tailwind, and code Playground

by shriek

HTML

<div class="left">
    <p>This is stuff</p>
</div>
<div class="right">
    <p>This is some other stuff</p>
</div>
<div class="full">
    <p>This is some other stuff</p>
</div>

CSS

.left{
    float:left;
    width:50%;
    height:100px;
    box-shadow:inset 0 0 2px red;
}
.right{
    float:left;
    width:50%;
    height:500px;
    box-shadow:inset 0 0 2px red;
}
.full{
    width:100%;
    float:left;
    box-shadow:inset 0 0 2px red;
}