1

enter image description here

<div id=actions>
    <button type=button>Back</button>
    <button type=button>Cancel</button>
    <button type=submit>Save</button>
</div>

#actions {
  display: flex;
  justify-content: flex-end;
}

#actions button:nth-child(1) {
  justify-self: flex-start;
}

https://jsfiddle.net/chovy/9hnpwn2n/

TylerH
  • 20,799
  • 66
  • 75
  • 101
chovy
  • 72,281
  • 52
  • 227
  • 295

1 Answers1

4
#actions button:nth-child(1) {
  margin-right: auto;
}