[jQuery] Re: Display DIVs as Multiple Columns

2009-08-24 Thread Liam Potter
float them, with css. S2 wrote: How can I display a bunch of DIVs in multiple columns? Like Flex's TileList component. A B C C E F G A B C D E F G A B C D E F G

[jQuery] Re: Display DIVs as Multiple Columns

2009-08-24 Thread Jonathan Vanherpe (T T NV)
S2 wrote: How can I display a bunch of DIVs in multiple columns? Like Flex's TileList component. A B C C E F G A B C D E F G A B C D E F G You could use float: left;width: 33%; in the stylesheet. No need to use javascript for that (as long as your divs have a fixed height). Jonathan