JSFiddle - React, Tailwind, and code Playground

by Guillaume Seguin

HTML

<div class="parent">
  <div class="left">
  qsdqsdqsd
  </div>
  <div class="right">
  qsdqsd
  </div>
</div>

CSS

.parent {
  width: 600px;
  height: 400px;
  background-color: red;
  
  display: flex;
}

.left {
  height: 50px;
  background-color: blue;
}

.right {
  height: 50px;
  background-color: yellow;
}