JSFiddle - React, Tailwind, and code Playground

by Bharat Gupta

HTML

<div class="container">
  <div class="box1"></div>
  <div class="box2"></div>
</div>

CSS

.container {
  display: flex;

  align-items: center;
  width: 400px;
  height: 200px;
  background: yellow;
}

.box1 {
  width: 100px;
  height: 100px;
  background: red;
}

.box2 {
  width: 100px;
  height: 100px;
  background: blue;
}