JSFiddle - React, Tailwind, and code Playground
by FungLee
HTML
<div class='flex'>
<div class='flex-item'></div>
<div class='flex-item'></div>
<div class='flex-item test'></div>
</div>
CSS
.flex {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100px;
background: gray;
}
.flex-item {
width: 20%;
height: 30px;
background: red;
border: 1px solid #fff;
}
.test {
justify-self: flex-end;
}