Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Mutli Column List

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #41811
    TWG
    Participant

    Is there a way to make a list automatically split up into multiple columns? I have a list that is being fed in by an RSS and I would like it to span multiple columns based on the number of entries.

    #120115
    trinzia
    Participant

    You can in CSS, if you don’t mind that it goes like:

    1 2
    3 4
    5 6

    li {display:inline-block; width:50%;}

    Floats etc can be used too. If that’s no good, google on ‘jquery list columns’ will return several plugins, such as Easy List Splitter: http://www.madeincima.it/en/articles/resources-and-tools/easy-list-splitter-plugin/

    However, I am unable to find any that will align all items bottom when it’s an odd number, not even any of the Masonry special layouts.

Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘CSS’ is closed to new topics and replies.