JSFiddle - React, Tailwind, and code Playground

by Lucas Silva

HTML

<div class="container">
  <div class="item"></div>
  <div class="item"></div>
</div>

CSS

.container {
  display: flex;
  width: 100%;
  background-color: red;
  flex-direction: row;
  flex-flow: row
}

.item {
  height: 50;
  margin-right: 10;
  flex: 1 auto;
  background-color: green;
}