JSFiddle - React, Tailwind, and code Playground

by Jed Mao

HTML

<div id="container">
    <div class="col col-1"></div>
    <div class="col col-2"></div>
    <div class="col col-3"></div>
</div>

SCSS

#container {
    background-color: whitesmoke;
    position: relative;
}

.col {
    width: 200px;
    background-color: yellowgreen;
}

.col-1 {
    height: 350px;
}