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