JSFiddle - React, Tailwind, and code Playground

by Bacher

HTML

<div class="cont">
  <div class="item"></div>
  <div class="item2"></div>
</div>

CSS

.cont {
  display: flex;
  /* flex-wrap: wrap; */
  width: 200px;
  height: 300px;
  background: yellow;
}


.item {
  width: 110px;
  height: 50px;
  background: green;
}

.item2 {
  width: 140px;
  height: 40px;
  background: red;
}