JSFiddle - React, Tailwind, and code Playground

by klierik

HTML

<div class="wrapper">
    
    <div class="col_left"></div>
    <div class="col_right"></div>
    
    <div class="main"></div>
    
</div>

CSS

.wrapper {
    overflow: hidden;
}

    .col_left,
    .col_right {
        float: left;
        width: 53px;
        height: 200px;

        background: #eee;
    }

    .col_right {
        float: right;

        background: #aaa;
    }

    .main {
        float: none;
        max-width: 1400px;
        margin: auto;
        height: 200px;

        background: #e01;
    }