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,816
  • 57
  • 73
  • 92
chovy
  • 65,853
  • 48
  • 201
  • 247

1 Answers1

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