JSFiddle - React, Tailwind, and code Playground
HTML
<div class="wrapper">
<div id="one">one</div>
<div id="two">two</div>
</div>
CSS
.row {
display: flex; /* equal height of the children */
}
.col {
flex: 1; /* additionally, equal width */
padding: 1em;
border: solid;
}