JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container">
<div class="first">
first
</div>
<div class="last">
last
</div>
</div>
CSS
.container {
display: flex;
flex-direction: row;
justify-content: flex-start;
width: 50%;
height: 50px;
background-color: skyblue;
text-align: center;
}
.first {
width: 50px;
height: 50px;
background-color: gray;
color: white;
}
.last {
width: 50px;
height: 50px;
margin-left: auto;
background-color: gray;
color: white;
}