新教程:css如何把元素固定在容器底部的四种方式
2年前 (2024-04-10)CSS3.3k
复制本页网址打印
前几天被人问,「如何把元素固定在容器底部」。(本来想直接把 demo 地址给他,结果没找到,那么今天我们来补一下)
Demo 地址
想法&思路
如果是页面底部,我们可以直接 position: fixed;bottom: 0; 基于浏览器定位直接实现。
但是他要的效果是基于父级容器,那么我们必须要使用其他手段来定位了
relative来限制absolute,然后bottom: 0,但是在内容过长的时候会导致显示异常。所以我们需要做内部滚动。- 如果做内部滚动,那么我们只要可以撑开盒子即可。不需要绝对定位了
使用 flex 实现
- 父级使用 flex 布局,column 垂直排列。
- 父级定高(height、maxHeight),
.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; }
calc 实现
如果不使用 flex ,那么我们可以用 calc 来减去 header 和 footer 空间。
<style> .demo3{ position: relative; } .demo3 .content{ overflow: auto; max-height: calc(100% - 40px); } </style> absolute 实现
如果 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> 益吾库今天分享的这篇关于新教程:css如何把元素固定在容器底部的四种方式的内容到这里就结束了,喜欢的话可以给我们点赞鼓励~
重要声明
当前栏目内容除非特别标注,否则均来源于网络公开信息整理分享,本站不提供存储和下载服务,且无法保证第三方链接永久可靠。您若对本站或当前页面内容有疑问或者建议,欢迎联系我们,我们将尽快处理,谢谢支持!

