JSFiddle - React, Tailwind, and code Playground

by ponyspy

HTML

<div class="outer">
    <div class="item left">1</div>
    <div class="item center"></div>
    <div class="item right">2</div>
</div>

CSS

.outer {
    width: 50%;
    height: 350px;
    outline: 1px solid red;
    overflow: hidden;
}

.left {
    width: 25%;
    height: 200px;
    float: left;
    background-color: green;
}

.center {
    width: 50%;
    height: 200px;
    float: left;
    background-color: blue;
}

.right {
    width: 25%;
    height: 200px;
    float: left;
    background-color: green;
}