I\'d like to put a group of div elements of fixed width into a container and have the horizontal scroll bar appeared. The div/span ele
div
span
It works with just this:
.slideContainer { white-space: nowrap; } .slide { display: inline-block; width: 600px; white-space: normal; }
I did originally have float : left; and that prevented it from working correctly.
float : left;
Thanks for posting this solution.