我有三个按钮开始、中止和关闭。你能告诉我如何将 Start 和 Abort 按钮准确地放在 DIV 的中心,然后将关闭按钮放在右侧。当我使用 float:right
Start and Abort 按钮时,它会对齐到其余空间的中心:(
<div style="text-align: center; width: 100%; border-width: 1px 0 0 0; ">
<button id="btn-continue-top-fill">Start</button>
<button id="btn-cancel-top-fill">Abort</button>
<button id="btn-close-top-fill" style="float: right;">Close</button>
</div>