JSFiddle - React, Tailwind, and code Playground
HTML
<div id="container">
<div id="left">
left other elements goes here
</div><div id="center">
center other elements goes here
</div>
</div>
CSS
#container {
width: 980px;
}
#container, #left, #center {
display: inline-block;
}
#left {
width: auto;
}
#center {
width: auto;
}