- A+
所属分类:教程文章

要实现一个美观且响应式的页脚布局,CSS中的 Flexbox 是最常用也最有效的方式之一。通过 align-items 和 justify-content 这两个属性,我们可以轻松控制页脚内部元素的垂直和水平对齐方式。
1. 基础页脚结构
先定义一个简单的HTML结构:
<footer class="footer">
<div class="footer-left">
© 2025 我的网站
</div>
<div class="footer-center">
联系我们:contact@example.com
</div>
<div class="footer-right">
<a href="#">隐私政策</a>
<a href="#">服务条款</a>
</div>
</footer>
2. 使用 Flex 实现居中对齐
让页脚整体内容在容器中水平居中、垂直居中,并均匀分布:
.footer {
display: flex;
justify-content: space-between; /* 水平分布 */
align-items: center; /* 垂直居中 */
padding: 20px;
background-color: #333;
color: white;
font-size: 14px;
}
justify-content: space-between 让左右两部分贴边,中间留出最大空间;align-items: center 确保所有子元素在垂直方向上居中,即使容器有一定高度也不会错位。
立即学习“前端免费学习笔记(深入)”;
3. 居中主导的页脚布局
如果希望所有内容都在页脚中间显示,可以这样设置:

如此AI员工

172
国内首个全链路营销获客AI Agent

172
查看详情

.footer {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
height: 100px;
}
这里使用 flex-direction: column 让内容纵向排列,justify-content: center 和 align-items: center 共同实现完全居中效果,适合简洁型页脚。
4. 响应式适配建议
在小屏幕上,横向排列可能拥挤,可以加媒体查询调整:
@media (max-width: 768px) {
.footer {
flex-direction: column;
gap: 10px;
}
.footer-left, .footer-center, .footer-right {
text-align: center;
}
}
这样在手机端,三个区域会垂直堆叠,阅读更清晰。
基本上就这些。灵活运用 justify-content 控制水平分布,align-items 控制垂直对齐,再配合 flex-direction 切换布局方向,就能应对大多数页脚设计需求。不复杂但容易忽略细节,比如文字对齐和响应式断点。实践时多尝试不同组合,找到最适合你页面风格的方式。




