JSFiddle - React, Tailwind, and code Playground

by Shaojiang Cai

HTML

<div id="parent">
  <div id="left">Left</div>
  <div id="right">Right</div>
</div>

CSS

#parent {
  display: flex;
  justify-content: space-between;
}

#left {
  flex: 1;
  background-color: red;
}

#right {
  flex: 0 0 200px;
  background-color: green;
}