可滚动的Div?

时间:2010-01-04 20:25:03

标签: jquery html scripting

有没有人知道一个伟大的jquery可滚动div(使用window.scroll滚动)只会在div内滚动,我不想使用position:fixed;因为人们拥有小型浏览器,并且可能比我的div小,并将其剪掉?

4 个答案:

答案 0 :(得分:6)

你碰巧尝试了

div { overflow: scroll; }

答案 1 :(得分:1)

您考虑过ScrollTo吗?

答案 2 :(得分:1)

尝试:

<div class="scrolling"> 
 If I put too much content in this div such that it overflows it size, scrollbars will appear.
<div>

<style type="text/css"> 
  div.scrolling { height: 100px; width: 100px; overflow: auto; } 
</style>

答案 3 :(得分:0)

这种方法过去对我有用。

.scrolly {
    overflow-y: auto;
    overflow-x: hidden;
}