JSFiddle - React, Tailwind, and code Playground
by holden321
HTML
<div class="wrapper">
<div class="aside">fff</div>
<div class="content"><div>dddd</div></div>
<div class="aside">fff</div>
</div>
CSS
.wrapper {
background: #000;
height: 200px;
display: inline-flex;
}
.aside {
width: 50px;
padding: 0 10px;
}
.content {
min-width: 200px;
}
.content div {
padding: 20px;
}
.aside, .content {
background: #ff0000;
border: 1px solid #ccc;
height: 200px;
display: table-cell;
}