JSFiddle - React, Tailwind, and code Playground
by WoJWoJ
HTML
<div class="external">
<div>hello</div>
<div class="special">bonjour</div>
<div>holĂ </div>
</div>
CSS
.external {
display: flex;
width: 200px;
height: 200px;
justify-content: space-around;
align-items: flex-start;
}
.special {
display: flex;
align-self: flex-end;
}