css - overflow allow horizontal scroll
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/