JSFiddle - React, Tailwind, and code Playground
by amindunited
HTML
<div class="container">
<div class="column">
col 1
</div>
<div class="column">
col 2
</div>
<div class="column">
col 3
</div>
</div>
CSS
.container {
width: 100%;
display: flex;
}
.column {
border: solid 1px green;
width: 15%;
}
.column:nth-of-type(2) {
border: solid 1px red;
width: 70%;
}