JSFiddle - React, Tailwind, and code Playground

by karthick6891

HTML

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

CSS

.container {
  display: flex;
  width: 100%;
}

.flex-item {
  border: 1px solid gray;
  height: 100px;
  width: 100px;
  flex: 1;
}

.flex-item:nth-child(1) {
  background-color: green;
}

.flex-item:nth-child(2) {
  background-color: red;
}

.flex-item:nth-child(3) {
  background-color: yellow;
}