I have a list of <li> elements where the <ul> has a fixed size of 150px (height) and 400px (width)
How are you today

How I would like to stay:

NOTE: This list is dynamic!
Thank you all for your help
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.
You can’t.
LIs go vertically or horizontally, they do not wrap to new coloumns.If you want lists as illustrated you need to use multiple
ULs and float them.If your LIs in on big long list, you can write some JavaScript that will break them down into multiple ULs. CSS cannot do this by itself.