trick to place 100 divs next to each other without wrap/newline/linebreak?

css, html

Solution

The divs should have CSS:

display:inline-block;

And a containing div around them:

white-space:nowrap;

Problem

Are there some css statments which put a finite number of divs next to each other to the right without making a "linebreak/newline/wrap" and having a wrapper with a defined width? Like putting 100 divs with 200px width and 60px height each next to each other on one line without a fixed width for a wrapper container?

Original source