我有一个我无法解决的任务。
我有一个网页内容,其中包含标题 div、内容 div 和背景中的完整图像。标题 div 有一个固定的位置,我不能改变它。
关键是,我必须编写 css,这将允许我向上滚动标题和内容。这是链接。
我想要的是用内容滚动标题,但保持标题 div 位置固定。
body {
background: #eee;
font-family: sans-serif;
}
div.sidebar {
padding: 10px;
padding-bottom: 60px;
border: 1px solid #ccc;
background: #fff;
top: 10px;
left: 10px;
bottom: 10px;
width: 580px;
}
div#fixed {
background: #76a7dc;
padding-bottom: 10px;
color: #fff;
position: fixed;
width: 580px;
height:50px;
z-index: 1;
}