What about
li { display: inline; margin-left: 15px; margin-right: 15px; }
rahul
2009-09-25 09:22:25
What about
li { display: inline; margin-left: 15px; margin-right: 15px; }
Floating them might also help. It just depends. You'll probably want a width applied if you want them in columns
li {float:right; width:20em;}
don't forget to clear the float!
CSS3 multi-column layouts is your solution. Unfortunately, they are not widely implemented yet.