我有这个侧面菜单,我想要修复,以便在用户滚动时跟随用户。我计划在其中放置跳跃目标,因为内容很长。
问题是,我修复了它然后当我向下滚动它时,它通过了页脚。我用了
top:0;
它并没有上升到页脚,但它上升了标题。会有什么解决方案?
这是我的HTML。
<div class="myheader">
</div>
<div class="content">
<div class="left_side">
</div>
<div class="right_side">
</div>
<div class="footer">
</div>
这是我的css:
.myheader{
float:left;
width:100%;
height:190px;
background: #fff url(img/blackorchid.png) repeat scroll 0 0;
}
.content{
float:left;
background: #fff url(img/linen.png) repeat scroll 0 0;
height:auto;
margin-left:120px;
width:1100px;
}
.left_side{
width:800px;
float:left;
}
.right_side{
width:300px;
height:500px;
background-color:yellow;
float:right;
position:fixed;
top:0;
}
left_side里面有内容。那是文本的所在。我想要修复的部门是<div class="right_side">
。