JSFiddle - React, Tailwind, and code Playground
by Cath_kb
HTML
<div class="content">
<div class="left">left</div>
<div class="right">right</div>
</div>
CSS
html, body {
margin: 0;
height: 100%;
}
.content {
display: table;
background: silver;
min-height: 100%;
width: 100%;
}
.content > div {
display: table-cell;
}
.left {
width: 200px;
background: blue;
}
.right {
background: yellow;
}