position: fixed
我在网页底部有一个按钮。如何使页面内容滚动到按钮后面?这是一张图片,更详细地说明了我的意思:
这是我尝试过的一些代码:
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#content {
height: 150px;
width: 100%;
background-color:lightpink;
padding:25px;
margin:20px;
}
#header{
color:white;
width:100%;
height:40px;
left:0;
top:0;
position:fixed;
background-color:black;
}
#sidebar{
top:0;
left:0;
width:90px;
height:100%;
position:fixed;
color:white;
background-color:steelblue;
}
.btn-bottom-center {
position: fixed;
left: 50%;
bottom: 20px;
transform: translate(-50%, -50%);
margin: 0 auto;
}
</style>
</head>
<body>
尺寸并不重要。我只需要知道如何使 div 滚动到网页底部固定位置的按钮后面的逻辑。我尝试margin-bottom
在页面内容中添加 a 但没有成功。已经谢谢了
拉丁的传说
相关分类