0

我如何做到这一点,以便当我向下滚动时,我的侧边栏保持在同一个地方

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

这是我的代码

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

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

</style>

提前致谢

4

1 回答 1

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

我想你希望它在滚动时跟随?

于 2013-06-21T16:09:21.953 回答