我想创建一个网页,底部有一个固定部分,顶部有一个将动态填充内容的部分,如果添加的内容不适合,这个动态部分应该有一个滚动条,以便保持在上面固定部分。
样式.css:
.action-box{
position: fixed;
bottom: 15px;
margin-top: 10px;
width: 100%;
}
索引.html:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<div>
<!-- this will be filled with content -->
</div>
<div class="action-box">
<!-- this is the fixed part -->
</div>
</body>
</html>
您可以在这个小提琴中看到两者div
重叠。
如何使第一个div
可滚动,使其不会滑过或低于最后一个div
?