How do I prevent selection scrolling in the body

Posted by Travis on Stack Overflow See other posts from Stack Overflow or by Travis
Published on 2010-03-23T04:45:11Z Indexed on 2010/03/23 4:51 UTC
Read the original article Hit count: 539

Filed under:
|
|

I have divs that are placed off-screen.

I have disabled scrollbars like so:

body {
overflow: hidden;
}

Currently, when I highlight text and drag the mouse outside the window, the body still scrolls.

How can I prevent this behaviour? (Setting offscreen elements to display: none is not an option.)

Thanks!

Travis

© Stack Overflow or respective owner

Related posts about css

Related posts about JavaScript