JSFiddle - React, Tailwind, and code Playground

by WoJWoJ

HTML

<div>
  <div class="big">
    hello
  </div>
  <div>
    bonjour
  </div>
</div>

CSS

div {
  display: flex;
  flex-direction: row;
  border-color: gray;
  border-style: solid;
  border-width: 5px;
}

.big {
  height: 100px;
}