0
In the middle of the page I have a div with an internal scroll, when I roll the page and I reach this div when using the mouse wheel I get stuck in it, when the div ends the scrolling does not continue to the rest of the page, there is a way to make the scrolling is continues?
As an example have the globe play videos page: https://globoplay.globo.com/v/5136913/
It’s good to have the code so we can look better.
– Fábio Miranda
Why don’t you put an internal "scroll" in very small css?
– Ivan Ferrer
See that in the example you gave, you need to mouse over the box, for it to do the internal scroll. It should have using a "onmouseup". and "onmouseout" to enter/exit the event. This has nothing to do with the layout.
– Ivan Ferrer
My layout is bigger than the height of the box, but when I roll the content inside the box using the mouse wheel and this content comes to an end I cannot scroll the rest of the page, the scrolling is stuck to this box.
– Munir Baarini
something like this:
<div onmouseover="this.style.overflow='auto';document.body.style.overflow='hidden';" onmouseout="this.style.overflow='hidden';document.body.style.overflow='auto'"></div>

– Ivan Ferrer
I solved the problem, it was environmental issue, internal was not working, thanks for the help!
– Munir Baarini