Overflow-x not working
Once you’ve floated the elements, you’ve taken them out the document flow and it won’t be calculated in the parent’s width. You have to use a combination of display: inline-block on the items instead of float, and then use white-space: nowrap on the parent. Fiddle Note: I’m using font-size: 0 to make the items appear … Read more