If I have a list of objects such as List myObjects; and there might be 2, 20, 50 etc items in the list.
What I want is to be able to itterate through the list and build a 3 column view of the items using css to layout the columns.
How do I do this? I don't want to do a loop where every three items I start at 1 again or is that the only way?
Can I simply loop through the items, place each object into a div and have the columns build themselves?