3 回答
TA贡献1876条经验 获得超6个赞
我想创建一种放置在底部的 div,当用户滚动时,它会继续跟随页面,有点像粘性内容。
你可以用position:sticky它来粘在底部......这是“有点像粘”
#content {
height: 800px;
border: 1px solid red;
}
#bottom {
border: 1px solid blue;
width: 100%;
background-color: #CCC;
text-align: center;
position: sticky;
bottom: 0;
}
<div id="content">
</div>
<div id="bottom">
bottom
</div>
如果您愿意,可以小提琴: https: //jsfiddle.net/c0me5d63/
如果您不想/不能使用position:sticky
那么您可以使用position:fixed
#content {
height: 800px;
border: 1px solid red;
margin-bottom:1.5em;
}
#bottom {
border: 1px solid blue;
width: 100%;
background-color: #CCC;
text-align: center;
position:fixed;
bottom:0;
}
<div id="content">
</div>
<div id="bottom">
bottom
</div>
添加回答
举报