https://developer.mozilla.org/zh-CN/docs/Web/CSS/justify-content
justify-content: space-between:均匀排列每个元素,首个元素放置于起点,末尾元素放置于终点。
示例:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body {
display: flex;
justify-content: space-between;
}
</style>
</head>
<body>
<button id="one">第一个按钮</button>
<button id="two">第二个按钮</button>
<button id="three">第三个按钮</button>
</body>
</html>
展示效果: