JSFiddle - React, Tailwind, and code Playground
by danield770
HTML
<div class="wrapper">
<div class="container">
<div class="column-l">
<div class="cell">Column L</div>
</div>
<div class="column-c">
<div class="cell">Column C</div>
</div>
<div class="column-r">
<div class="cell">Column R</div>
</div>
</div>
</div>
CSS
.wrapper {
width: 100%;
background: yellow;
}
.container {
width: 90%;
margin: 0 auto;
display: table;
}
.cell {
padding: 1em;
}
.column-l {
width: 300px;
background: red;
display:table-cell;
}
.column-c {
background: green;
display:table-cell;
}
.column-r {
width: 300px;
background: blue;
display:table-cell;
}