JSFiddle - React, Tailwind, and code Playground

by Guillaume Seguin

HTML

<div class="parent">
<div class="child">
</div>
<div class="child2">
</div>
</div>

CSS

.parent {
  width: 100%;
  height: 100vh;
  background-color: lightgreen;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  
}

.child {
  width: 50%;
  height: 100%;
  background-color: lightpink;
}

.child2 {
  width: 40%;
  height: 100%;
  background-color: lightpink;
}