基于CSS怎样将元素固定容器底部,有哪些方法
Admin 2022-11-29 群英技术资讯 462 次浏览
想法&思路
如果是页面底部,我们可以直接 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进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
我们知道,一般a标签点击时是有蓝色的背景颜色的,那么我们如果想要去除这样的背景的颜色应该怎样做呢?下面小编就给大家来简单的介绍去除a标签点击后的背景颜色的方法。
这篇文章主要介绍了HTML+CSS相对宽度和绝对宽度冲突时的div解决方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
在css中,可以利用“border-bottom”属性和“text-decoration”属性让a标签下面的线加粗,语法为“a{text-decoration:none;border-bottom:线的粗细值 solid 颜色值;}”。
在css中,可以利用overflow属性设置超出的文本隐藏起来,该属性用于规定当内容超出元素框的时候发生的事情,当属性的值为“hidden”时,超出的内容会被隐藏,语法为“文本元素{overflow:hidden;}”。
这篇文章主要介绍了CSS拾遗之箭头,目录,图标的实现代码,代码简单易懂,非常不错,具有一定的参考借鉴价值,需要的朋友可以参考下
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008