JSFiddle - React, Tailwind, and code Playground

by designingsean

HTML

<div class="tripple">
    <div class="left">test</div>
    <div class="middle">test</div>
    <div class="right">test</div>
</div>

CSS

.tripple {
    width: 90%;
    height: 100%;
    margin: 5%;
    border: solid;
    overflow: auto;
}

.left, .right, .middle {
    float:left;
    width: 33%;
    height: 100px;
}

.left {
    background-color: red;
}

.middle {
    background-color: green;
}

.right {
    background-color: blue;
}