想法&思路
如果是页面底部,我们可以直接 position: fixed;bottom: 0;
基于浏览器定位直接实现。
但是他要的效果是基于父级容器,那么我们必须要使用其他手段来定位了
relative
来限制 absolute
,然后 bottom: 0
,但是在内容过长的时候会导致显示异常。所以我们需要做内部滚动。.content
子级 flex:auto;
自动撑开。 或者 .content
做高度限制。footer 可以使用 absolute 加 padding 。或者完全依赖文档流布局都可以
.demo1{
position: relative;
padding-bottom: 40px;
display: inline-flex;
flex-direction: column;
}
.demo1 .footer{
position: absolute;
bottom: 0;
left: 0;right: 0;
margin: 0;
}
.demo1 .content{
overflow: auto;
}
如果不使用 flex ,那么我们可以用 calc 来减去 header 和 footer 空间。
<style>
.demo3{
position: relative;
}
.demo3 .content{
overflow: auto;
max-height: calc(100% - 40px);
}
</style>
如果 calc 兼容性不太好,那么还可以使用 absolute 将所有元素都脱离文档流。
<style>
.demo4{
position: relative;
}
.demo4 .header,.demo4 .footer{
position: absolute;
margin: 0;
top:0;left:0 ;right:0;
}
.demo4 .footer{
top: auto;
bottom: 0;
}
.demo4 .content{
overflow: auto;
height: 100%;
padding-top: 30px;
padding-bottom: 30px;
margin: 0;
box-sizing: border-box;
}
</style>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
长按识别二维码并关注微信
更方便到期提醒、手机管理