Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > HTML > List with multiple columns

Reply
Thread Tools

List with multiple columns

 
 
Bruno
Guest
Posts: n/a
 
      06-09-2005
Hi all,

I need to get a list to wrap onto new columns. Any ideas?


 
Reply With Quote
 
 
 
 
Leif K-Brooks
Guest
Posts: n/a
 
      06-09-2005
Bruno wrote:
> I need to get a list to wrap onto new columns. Any ideas?


li {
width: 15em;
float: left;
}

ul {
height: 100%; /* For IE */
}

ul:after {
content: "";
clear: left;
height: 0;
display: block;
}
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
groupby - summing multiple columns in a list of lists Jackson Python 1 05-17-2011 06:24 PM
convert rows to columns and columns to rows helpful sql ASP .Net 0 05-19-2005 06:03 PM
Multiple columns in a List Box Srinivasa Rao ASP .Net Web Controls 2 02-16-2005 03:30 PM
Format a list into multiple columns, or dynamically display columnsusing CSS? Steve HTML 2 08-20-2004 06:46 AM
Wrapping list in multiple columns Steven K ASP General 1 07-15-2003 09:25 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57