I'm dynamically generating more divs (of same size with same content), and I want them side by side and also center them.
Example: Assuming there can be 4 divs on one line I want it do look this:
1 div: ...[]...
2 divs: ..[][]..
3 divs: .[][][].
4 divs: [][][][]
5 divs:
[][][][]
...[]...
Is this possible?
I know you can put multiple div's in one line (and let them wrap) with float:left
and an outer container with width: 100%
Test here: http://jsfiddle.net/Tyilo/cD7e3/1/