I'm not quite sure that this is possible (at least not from my experience or Googling), but I was wondering if there was a way to force the order of CSS columns. For instance, instead of:
item1        item4        item7
item2        item5        item8
item3        item6        item9
order them like this:
item1        item2        item3
item4        item5        item6
item7        item8        item9
given html like this:
<ul>
    <li>item1</li>
    <li>item2</li>
    etc...
</ul>
Of course I could use a table (no thanks) or floats, but I was hoping to use the CSS columns property.