Html 如何使用flex box将第一个按钮向左对齐?

Html 如何使用flex box将第一个按钮向左对齐?,html,css,flexbox,Html,Css,Flexbox,返回 取消 拯救 #行动{ 显示器:flex; 证明内容:柔性端; } #操作按钮:第n个子项(1){ 自我证明:灵活启动; } <div id=actions> <button type=button>Back</button> <button type=button>Cancel</button> <button type=submit>Save</button> </div


返回
取消
拯救
#行动{
显示器:flex;
证明内容:柔性端;
}
#操作按钮:第n个子项(1){
自我证明:灵活启动;
}

<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;
}
#actions button:nth-child(1) {
  margin-right: auto;
}