我希望在具有溢出-y:滚动的 div 内有一个固定位置的 div,这意味着我希望 div 在其余内容正常滚动时保持原位。而且我不知道出了什么问题,有人可以帮忙吗?提前致谢...
.foo {
position:relative;
display:block;
width:100%;
height:300px;
overflow-y:scroll;
}
.bar {
position:fixed;
top:0;
right:0;
}
这是HTML
<div class="foo">
<div class="bar"><div><!-- end of div that should be fixed -->
<div class="someOther">...</div>
<div class="someOther">...</div>
<div class="someOther">...</div>
<div class="someOther">...</div>
</div><!-- end of container -->