We have floating panels that may be partially in screen. Can the window/body ignore it when it decides if scroll bar needs to show?
We do need scroll bar when other elements go outside of the window, but not this panel. So overflow:hidden on the body won't work.
If I understand correctly you should just be able to say:
body { overflow: auto; }
If you wanted control on which access the element overflows on then try something like this:
body { overflow-x: auto; overflow-y: hidden; }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With