JSFiddle - React, Tailwind, and code Playground
HTML
<div id="left">
Box left
</div>
<div id="content">
Content
</div>
<div id="right">
Box right
</div>
CSS
#left {
position: absolute;
width: 25%;
background-color: violet;
}
#right {
position: absolute;
width: 25%;
margin-left: 75%;
background-color: green;
}
#content {
position: absolute;
width: 50%;
margin-left: 25%;
background-color: red;
}