JSFiddle - React, Tailwind, and code Playground

by tanya_22

HTML

<div class="bla">
  <div class="ala">hello</div>
</div>

CSS

.bla {
  width: 300px;
  height: 300px;
  background: red;
  display: flex;
}
.ala{
  height: 200px;
  width: 100px;
  background: blue;
}