JSFiddle - React, Tailwind, and code Playground

HTML

<div class='wrap'>
  <div class='element'>HELLO</div><div class='element'>WORLD</div>
</div>

CSS

.wrap {
    background:red;
    white-space:nowrap;
    width:300px;
}
.element {
    background:#009; color:#cef; text-align:center;
    display:inline-block;
    width:50%;
    margin:4px;
}