JSFiddle - React, Tailwind, and code Playground

by Richard Hunter

HTML

<div class="container">
    <div class="alpha">alpha</div>
    
</div>

CSS

.container {
    width : 500px;
    background : pink;
    display : flex;
    flex-direction : row;
    flex-wrap : wrap;
    justify-content : flex-end;
}