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
As mentioned you can use:
overflow: scroll;
If you only want the scroll bar to appear when necessary, you can use the "auto" option:
overflow: auto;
I don't think you should be using the "float" property with "overflow", but I'd have to try out your example first.