JSFiddle - React, Tailwind, and code Playground

by Chris Blake

HTML

<div class="stretch">
  <div class="grow1"></div>
  <div class="grow0"></div>
</div>

CSS

.stretch {
  background-color: green;
}
.grow1 {
  background-color: red;
}
.grow0 {
  background-color: blue;
  width: 100px;
}