标签: javascript jquery css html5
我在flexbox上有一个布局。 在固定的侧边栏中,我有滚动和主容器 问题是,当我在侧边栏中滚动并到达滚动的末尾时,主容器中的滚动开始滚动。如何防止这种情况并仅滚动用户关注的内容(仅侧边栏或主容器)?
答案 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?