JSFiddle - React, Tailwind, and code Playground

by Denis Ineshin

HTML

<div class="content">
    <div class="left">1</div>
    <div class="right">2</div>
</div>

CSS

html, body {
    height: 100%;
}

body {
    margin: 0;
}

.content {
    display: table;
    width: 100%;
    height: 100%;
}
.left {
    display: table-cell;
    vertical-align: top;
    width: 200px;
    background: #eee;
    
}
.right {
    display: table-cell;
    vertical-align: top;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}