保持页脚始终在底部,并且保持一个干净的HTML结构可以通过以下几种方法实现:
示例代码:
<!DOCTYPE html>
<html>
<head>
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
}
.container {
display: flex;
flex-direction: column;
min-height: 100%;
}
.content {
flex: 1;
}
.footer {
flex-shrink: 0;
}
</style>
</head>
<body>
<div class="container">
<div class="content">
<!-- 页面内容 -->
</div>
<div class="footer">
<!-- 页脚内容 -->
</div>
</div>
</body>
</html>
示例代码:
<!DOCTYPE html>
<html>
<head>
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
}
.container {
min-height: 100%;
position: relative;
}
.content {
/* 设置合适的上下边距,以避免内容被页脚遮挡 */
padding-bottom: 50px;
}
.footer {
position: sticky;
bottom: 0;
height: 50px;
}
</style>
</head>
<body>
<div class="container">
<div class="content">
<!-- 页面内容 -->
</div>
<div class="footer">
<!-- 页脚内容 -->
</div>
</div>
</body>
</html>
示例代码:
<!DOCTYPE html>
<html>
<head>
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
}
.container {
min-height: 100%;
position: relative;
}
.content {
/* 设置合适的上下边距,以避免内容被页脚遮挡 */
padding-bottom: 50px;
}
.footer {
position: absolute;
bottom: 0;
height: 50px;
}
</style>
</head>
<body>
<div class="container">
<div class="content">
<!-- 页面内容 -->
</div>
<div class="footer">
<!-- 页脚内容 -->
</div>
</div>
<script>
function adjustFooterPosition() {
var container = document.querySelector('.container');
var footer = document.querySelector('.footer');
var windowHeight = window.innerHeight;
var containerHeight = container.offsetHeight;
var footerHeight = footer.offsetHeight;
if (windowHeight > containerHeight + footerHeight) {
footer.style.position = 'fixed';
footer.style.bottom = '0';
} else {
footer.style.position = 'static';
}
}
window.addEventListener('resize', adjustFooterPosition);
adjustFooterPosition();
</script>
</body>
</html>
以上是保持页脚始终在底部并保持一个干净的HTML结构的几种方法,根据具体需求选择合适的方法进行实现。
“中小企业”在线学堂
腾讯技术创作特训营第二季
小程序·云开发官方直播课(数据库方向)
腾讯云GAME-TECH沙龙
云+社区技术沙龙[第5期]
DB TALK 技术分享会
DB TALK 技术分享会
DBTalk
云+社区技术沙龙[第28期]
领取专属 10元无门槛券
手把手带您无忧上云