I am working on a unique bug and created a violin to replicate it.
When the middle mouse button is pressed over a div element with text in it, there is no way to restore it, because the pointer is stuck. I was wondering if this is a browser error?
Could there be other ways to implement this script with a scrollable div and different CSS rules?
FIDDLE: https://jsfiddle.net/cs84mobe/9/
html <div class="one"> <div class="two"> <div class="three"> lots of content ..... </div> </div> </div> CSS div { border: 1px solid black; padding: 10px } .three { height: 100px; overflow: auto; }
I checked other stackoverflow related questions, but didn't help them.
source share