语法:
.container {
display: flex;
justify-content: space-between;
}
- display: flex; 声明容器使用 Flexbox 布局。
- justify-content: space-between; 设置子元素在主轴上两端对齐。
代码实例:
HTML 结构:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Two-End Alignment</title>
</head>
<body>
<div class="container">
<div class="box">Box 1</div>
<div class="box">Box 2</div>
<div class="box">Box 3</div>
</div>
</body>
</html>
CSS 样式(styles.css):
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
}
.container {
display: flex;
justify-content: space-between;
padding: 20px;
background-color: #f0f0f0;
}
.box {
width: 100px;
height: 100px;
background-color: #3498db;
color: #fff;
text-align: center;
line-height: 100px;
}
在这个例子中,.container 是包含三个子元素(.box)的容器。.container 使用 Flexbox 布局,并通过 justify-content: space-between; 实现了两端对齐。.box 是简单的带有背景颜色的盒子元素,用于演示对齐效果。
你可以根据需要修改盒子的样式、数量和容器的样式。这个例子提供了一个基础的起点,你可以根据项目的实际需求进行扩展。
转载请注明出处:http://www.zyzy.cn/article/detail/4043/CSS