Quick question about overflows. I'm working on this page
http://www4.wittenberg.edu/admission_dev/undergrad/ and I'm trying to get the overflow to allow for horizontal scrolls. I've tried setting the body to hidden and the class "real body" to auto. This doesn't seem to work. Any help would be appreciated!
Ben
you need to wrap your long content div with a position: relative; overflow: auto
div.
which i something like this:
.wrapper {
position: relative;
overflow: auto;
}
.content {
position: absolute;
width: 30000px;
}
for a better example, please check http://jsfiddle.net/wXqPv/
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