当我滚动时如何将项目保持在同一个地方?

时间:2013-06-21 16:00:36

标签: scroll

如何制作,以便当我向下滚动时,我的侧边栏会停留在同一个地方

我环顾四周但仍然找不到任何东西。

这是我的代码

    <div class="example">
    //stuff goes here
    </div>

    <style>
.example {
float: left;
background: blue;
width: 100px;
height: 100px;
}

</style>

提前致谢

1 个答案:

答案 0 :(得分:5)

.sidebar{
  position:fixed;
  right:0;
  top:0;
}

我认为你想在滚动时跟随它?