如何制作,以便当我向下滚动时,我的侧边栏会停留在同一个地方
我环顾四周但仍然找不到任何东西。
这是我的代码
<div class="example">
//stuff goes here
</div>
<style>
.example {
float: left;
background: blue;
width: 100px;
height: 100px;
}
</style>
提前致谢
答案 0 :(得分:5)
.sidebar{
position:fixed;
right:0;
top:0;
}
我认为你想在滚动时跟随它?