show/hide this revision's text 2 made it cross browser (thanks to comments)

You could use the following with each column the same width.

You'll have a fixed column width, but the list will reflow itself automatically. I added a little bit of extra HTML but now it works in FF en IE.

html:

<ul class="ColumnBasedList">
  <li>Item1</li>
  <li>Item2</li>
  <li>Item3</li>
  <li>Item4</li>
  <li>Item5</li>
  <li>Item6</li>
<li><span>Item1 2</span></li>
  <li><span>Item2 3</span></li>
  <li><span>Item3 5</span></li>
  <li><span>Item4 6</span></li>
  <li><span>Item5 7</span></li>
  <li><span>Item6 8</span></li>
</ul>

css:

.ColumnBasedList
{
    width: 80%;
    margin: 0;
    padding: 0;
}

.ColumnBasedList li
{
    list-style-type: none;
    display:inline;
}

.ColumnBasedList li span
{
    display: -moz-inline-block;
    display: inline-block;
    width: 20em;
    margin: 0.3em0.6em;
}
show/hide this revision's text 1

You could use the following with each column the same width.

You'll have a fixed column width, but the list will reflow itself automatically.

html:

<ul class="ColumnBasedList">
  <li>Item1</li>
  <li>Item2</li>
  <li>Item3</li>
  <li>Item4</li>
  <li>Item5</li>
  <li>Item6</li>
</ul>

css:

.ColumnBasedList
{
    width: 80%;
    margin: 0;
    padding: 0;
}

.ColumnBasedList li
{
    list-style-type: none;
    display: -moz-inline-block;
    display: inline-block;
    width: 20em;
    margin: 0.3em 0.6em;
}