实现css使按钮button固定在底部!
要实现的效果:
如果上⾯元素较少,提交按钮在屏幕底部,如果上⾯元素较多,接近⼀屏,或者超过⼀屏,按钮随之下移。
需要以下⼏点:
1、按钮和上⾯元素在⼀个div中,⽗div相对定位,需要居底的div绝对定位。
2、⽗div min-height: 100vh。
3、⽗div设⼀个伪类,伪类设置⼀定⾼度,或者直接⽤padding-bottom。
完整demo:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no"> <title>Title</title>
<style>
body{
border: 0;
margin: 0;
}
.cont{
position: relative;
min-height: 100vh;
padding-bottom: 95px;
box-sizing: border-box;
}
.cont .list {
height: 65px;
line-height: 65px;
border-bottom: 1px solid #F2F2F2;
text-align: center;
font-size: 15px;
background-color: #ffffff;
css固定定位}
.
btn {
position: absolute;
text-align: center;
bottom: 0;
font-size: 16px;
color: #FFFFFF;
margin: 25px 0;
width: 335px;
height: 45px;
line-height: 45px;
background: #E0E0E0;
border-radius: 5px;
background-color: #1B68FD;
left: 50%;
transform: translateX(-50%);
}
</style>
</head>
<body>
<div class="cont">
<div class="list">list</div>
<div class="list">list</div>
<div class="list">list</div>
<div class="list">list</div>
<div class="list">list</div>
<div class="list">list</div>
<div class="list">list</div>
<div class="list">list</div>
<div class="list">list</div>
<div class="list">list</div>
<div class="list">list</div>
<div class="list">list</div>
<div class="list">list</div>
<div class="btn">按钮</div>
</div>
</body>
</html>
作者:指尖跳动
链接:www.jianshu/p/d48e93a8f459
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,⾮商业转载请注明出处。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论