Consider the following:
Consider the scenario where I have my mouse positioned in div A and I use the mouse wheel to scroll to the bottom or top of divA. When I reach the bottom of div A and keep scrolling with the wheel, it will begin to scroll div B. I would like the mouse wheel to only scroll the current div that the cursor is sitting on.
Is this possible with any standard CSS? Or do I need to wire up JS/jQuery events to detect the div I am currently on and stop the scroll event? I am hoping there is a CSS solution to this.
Thanks in advance for any help!