If i had a list like the following:

<ul>
  <li>Alex</li>
  <li>James</li>
  <li>Thomas</li>
  <li>Is</li>
  <li>Asking</li>
  <li>Questions</li>
  <li>On</li>
  <li>Stackoverflow</li>
</ul>

The default will be displayed like:

* Alex   
* James
* Thomas
* Is
* Asking
* Questions
* On
* Stackoverflow

What CSS would i use to get it to display like:

* Alex     * Questions
* James    * On
* Thomas   * Stackoverflow
* Is
* Asking

Thanks in advance...

link|improve this question

69% accept rate
There's an interesting article on A List Apart on this very topic: alistapart.com/articles/multicolumnlists – Jamie Dixon Jun 24 '11 at 12:34
Looks interesting, i'll give it a tyr. Thanks @Jamie Dixon – Alex Thomas Jun 24 '11 at 12:36
@Jamie Dixon - great suggestion, unfortunately I need to keep these in the order I stated. – Alex Thomas Jun 24 '11 at 13:13
feedback

3 Answers

up vote 7 down vote accepted

For modern browsers

ul{
    -ms-column-count: 2;
    -o-column-count: 2;
    -moz-column-count: 2;
    -khtml-column-count: 2;
    column-count: 2;
    }
link|improve this answer
nice, didn't know about column-count - here's a fiddle to go with: jsfiddle.net/pxfunc/zRwZM – mdmullinax Jun 24 '11 at 12:48
1  
I'll roll with this for newer (better!) browsers and use @Jamie Dixon suggestion for older browsers. – Alex Thomas Jun 24 '11 at 13:26
feedback

Afaik this is not possible with CSS2. Especially if you want to keep the order like you mentioned it.

However there is a jQuery Plugin that does exactly what you descripted.

http://www.christianyates.com/blog/mmm-geeky/multi-column-lists-jquery-alternative-method

link|improve this answer
Hmmm... its an option. I'm trying to keep jQuery to a minimum. – Alex Thomas Jun 24 '11 at 13:14
The result is similar to Nikhil Bhandari post but it also works for older browsers (e.g. IE7 or IE8) – Ghommey Jun 24 '11 at 13:16
feedback

If you would like set width for every <li> and lost order of elements, here is demo: http://jsfiddle.net/dpXz2/

li{
    display: block;
    float: left;
    width: 75px;
}

ul{
    width: 150px;
}
link|improve this answer
Unfortunately I need to keep these in the order I stated, so this method doesnt work. Thanks tho – Alex Thomas Jun 24 '11 at 13:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.