There is a CSS3 solution for this, but so far it is not widely implemented by browsers. See this example using the CSS property column-count:
http://jsfiddle.net/hwzpy/
Currently works only in FF, Safari and Chrome. Otherwise, you will have to use javascript or split the list into two lists.
-edit- The float option related in other answers is really neat, didn't know about it.
source
share