CSS页面中实现底部固定的方式有多少种
Admin 2022-06-02 群英技术资讯 876 次浏览
这篇文章将为大家详细讲解有关“CSS页面中实现底部固定的方式有多少种”的知识,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。当我们在写页面时经常会遇到页面内容少的时候,footer会戳在页面中间或什么?反正就是不在最底部显示,反正就是很难看,下面要讲的布局就是解决如何使元素粘住浏览器底部,
方法一:footer高度固定+绝对定位
html
<div class="dui-container"> <header>Header</header> <main>Content</main> <footer>Footer</footer> </div>
CSS
.dui-container{
position: relative;
min-height: 100%;
}
main {
padding-bottom: 100px;
}
header, footer{
line-height: 100px;
height: 100px;
}
footer{
width: 100%;
position: absolute;
bottom: 0
}
查看效果
方法二:在主体content上的下边距增加一个负值等于底部高度
html
<header>Header</header> <main>Content</main> <footer>Footer</footer>
CSS
html, body {
height: 100%;
}
main {
min-height: 100%;
padding-top: 100px;
padding-bottom: 100px;
margin-top: -100px;
margin-bottom: -100px;
}
header, footer{
line-height: 100px;
height: 100px;
}
查看效果
方法三:将页脚的margin-top设为负数
html
<header>Header</header> <main>Content</main> <footer>Footer</footer>
CSS
main {
min-height: 100%;
padding-top: 100px;
padding-bottom: 100px;
}
header, footer{
line-height: 100px;
height: 100px;
}
header{
margin-bottom: -100px;
}
footer{
margin-top: -100px;
}
查看效果
方法四: 通过设置flex,将footer的margin-top设置为auto
html
<header>Header</header> <main>Content</main> <footer>Footer</footer>
CSS
body{
display: flex;
min-height: 100vh;
flex-direction: column;
}
header,footer{
line-height: 100px;
height: 100px;
}
footer{
margin-top: auto;
}
查看效果
方法五: 通过函数calc()计算内容的高度
html代码
<header>Header</header> <main>Content</main> <footer>Footer</footer>
CSS代码
main{
min-height: calc(100vh - 200px); /* 这个200px是header和footer的高度 */
}
header,footer{
height: 100px;
line-height: 100px;
}
查看效果
方法六: 通过设置flexbox,将主体main设置为flex
html
<header>Header</header> <main>Content</main> <footer>Footer</footer>
CSS代码
body{
display: flex;
min-height: 100vh;
flex-direction: column;
}
main{
flex: 1
}
查看效果
方法七: 使用grid布局
Html代码
<header>Header</header> <main>Content</main> <footer>Footer</footer>
CSS代码
html {
height: 100%;
}
body {
min-height: 100%;
display: grid;
grid-template-rows: auto 1fr auto;
}
.footer {
grid-row-start: 3;
grid-row-end: 4;
}
查看效果
方法八: display-*
html
<header>Header</header> <main>Content</main> <footer>Footer</footer>
CSS
body {
min-height: 100%;
display: table;
width: 100%;
}
main {
display: table-row;
height: 100%;
}
查看效果
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
css中,可利用transform属性实现垂直翻转效果,该属性可以对元素进行旋转、缩放、移动或倾斜操作,当该属性与rotateX()函数配合使用时,可设置元素垂直翻转样式,语法为“元素{transform:rotateX(翻转角度);}”。
已知两个宽和高均为100px,margin均为20px的div垂直排列,现象如下图所示: 当设置css1的margin-bottom:40px;或者css2的margin-top:40px时,现象如下图所示: 结论:只有当两个垂直排列的盒子的垂直外边距挨在一起时会产生合并问题,此问题也不需要解决,记住谁的外边距较大就采用谁的外边距就ok了。水平排列的盒子不存在合并的问题。下面实
这篇文章主要介绍了CSS3 真的会替代 SCSS 吗的相关知识,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
这篇文章主要介绍了HTML5拖放API实现自动生成相框功能,将桌面图片拖入指定地方,生成相框和相关信息。本文通过实例代码详解,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
HTML列表的主要标记怎样表示,用法是什么?在html页面中,列表可以起到提纲写领的作用。列表分为两种类型,一是有序列表,一是无序列表。前者用项目符号来标记无序的项目,而后者则使用编号来记录项目的顺序。
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008