show/hide this revision's text 2 added 31 characters in body

You could float a couple of unordered lists, like this:

<ul style="float: left;">
    <li>Short</li>
    <li>Loooong</li>
    <li>Even longer</li>
</ul>
<ul style="float: left;">
    <li>Loooong</li>
    <li>Short</li>
    <li>...</li>
</ul>
<ul style="float: left;">
    <li>Semi long</li>
    <li>...</li>
    <li>Short</li>
</ul>

It would require you to do some calculations on how many list-items and in how many lists should be put shoved into the DOM, but this way - when you re-size the container which holds the lists - the lists will float to fit into that container.

show/hide this revision's text 1

You could float a couple of unordered lists, like this:

<ul style="float: left;">
    <li>Short</li>
    <li>Loooong</li>
    <li>Even longer</li>
</ul>
<ul style="float: left;">
    <li>Loooong</li>
    <li>Short</li>
    <li>...</li>
</ul>
<ul style="float: left;">
    <li>Semi long</li>
    <li>...</li>
    <li>Short</li>
</ul>

It would require you to do some calculations on how many list-items and lists should be put into the DOM, but this way - when you re-size the container which holds the lists - the lists will float to fit.