JSFiddle - React, Tailwind, and code Playground
by cathead
HTML
<div class="row">
<div class="col">
hello
</div>
<div class="col">world</div>
</div>
CSS
.row {
display: flex;
flex-direction: row-reverse;
}
.col {
width: 100%;
}