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.
