I’m wondering if its possible to make a list like this:

Or should I just use divs to accomplish the same thing?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It is possbile with pure CSS (floats) to get a list like:
but to get:
you’d need to use javascript or 2 lists with css styling. (EDIT: or as another answer by cale_b mentions, for modern browsers you could use
column-count)the css for my first scenario would look something like this:
adjust your widths, margins and paddings to your liking of course