要让页脚卡在底部,可以使用以下方法:
position: fixed;
和bottom: 0;
来实现。这样无论页面内容的高度如何,页脚都会始终位于页面底部。例如:footer {
position: fixed;
bottom: 0;
width: 100%;
height: 50px;
background-color: #f5f5f5;
}
<body>
<div class="container">
<div class="content">
<!-- 页面主要内容 -->
</div>
<footer>
<!-- 页脚内容 -->
</footer>
</div>
</body>
html, body {
height: 100%;
}
.container {
display: flex;
flex-direction: column;
min-height: 100%;
}
.content {
flex: 1;
}
footer {
height: 50px;
background-color: #f5f5f5;
}
这样,无论页面内容的高度如何,页脚都会始终位于页面底部。
推荐的腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云