当页面内容全部占满时,滑动到最下面,显示footer在底部;
当页面内容不满时,footer也是在最底部显示。
具体实现代码如下:文章来源地址https://www.toymoban.com/news/detail-579600.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
* {
margin: 0;
padding: 0;
}
html,
body {
height: 100%;
}
.page {
display: flex;
flex-direction: column;
height: 100%;
}
header {
background: green;
flex: 0 0 auto;
}
.content {
background: #ccc;
flex: 1 0 auto;
}
footer {
background: green;
flex: 0 0 auto;
}
</style>
</head>
<body>
<body>
<div class="page">
<header> 头部 </header>
<div class="content">
这是内容区域!!这是内容区域!!这是内容区域!!这是内容区域!!这是内容区域!!这是内容区域!!这是内容区域!!这是内容区域!!这是内容区域!!这是内容区域!!这是内容区域!!这是内容区域!!这是内容区域!!这是内容区域!!这是内容区域!!这是内容区域!!这是内容区域!!这是内容区域!!这是内容区域!!这是内容区域!!这是内容区域!!这是内容区域!!这是内容区域!!这是内容区域!!这是内容区域!!这是内容区域!!这是内容区域!!这是内容区域!!这是内容区域!!这是内容区域!!这是内容区域!!这是内容区域!!这是内容区域!!这是内容区域!!
</div>
<footer> 底部 </footer>
</div>
</body>
</body>
</html>
文章来源:https://www.toymoban.com/news/detail-579600.html
到了这里,关于通过css实现-让页面的footer始终位于底部的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!