基本上我有 4 个 div(横幅、左侧内容、右侧内容和页脚)。横幅和左侧内容 div 是固定的,而右侧内容和页脚则不是。我想要发生的是,当页脚的顶部与左侧内容 div 的底部相遇时,它会自行解开并与右侧 div 一起滚动。
我在下面的 jsfiddle 中设置了我目前拥有的预览。
http://jsfiddle.net/sgcer/270/
<div id="banner">BANNER</div>
<div id="content">
<div id="left">LEFT</div>
<div id="right">RIGHT</div>
</div>
<div id="footer">FOOTER</div>
#banner {
float: left;
width: 100%;
height: 100px;
background-color: #00ff00;
position: fixed;
}
#content {
height: auto;
}
#left {
float: left;
width: 30%;
height: 600px;
background-color: #ccc;
position: fixed;
margin-top: 100px;
}
#right {
float: right;
width: 70%;
height: 750px;
background-color: #333;
margin-top: 100px;
}
#footer {
clear: both;
width: 100%;
height: 100px;
background-color: #ff0000;
}
任何帮助将不胜感激!