JSFiddle - React, Tailwind, and code Playground
by chovy
HTML
<div id=actions>
<button type=button>Back</button>
<button type=button>Cancel</button>
<button type=submit>Save</button>
</div>
CSS
#actions {
display: flex;
justify-content: flex-end;
border: 1px solid red;
}
#actions button:nth-child(1) {
justify-self: flex-start;
}