侧栏滚动连接到主容器

时间:2017-12-29 09:18:24

标签: javascript jquery css html5

我在flexbox上有一个布局。
在固定的侧边栏中,我有滚动和主容器 问题是,当我在侧边栏中滚动并到达滚动的末尾时,主容器中的滚动开始滚动。如何防止这种情况并仅滚动用户关注的内容(仅侧边栏或主容器)?

1 个答案:

答案 0 :(得分:0)

<div onmouseover="document.body.style.overflow='hidden';" onmouseout="document.body.style.overflow='auto';"></div>

来自

Scrolling child div scrolls the window, how do I stop that?