JSFiddle - React, Tailwind, and code Playground

by brandondurham

HTML

<div class="row">
  <div class="cell">
    <input type="text" />
  </div>
  <div class="cell">
    <input type="text" />
  </div>
  <div class="cta">
    <button>
      Hello.
    </button>
  </div>
</div>

CSS

.row {
  background: grey;
  display: flex;
}

.cell {
  flex: 1;
  padding: 10px;
}

.cta {
  padding: 10px;
}

input {
  width: 100%;
}