In this jQuery example: http://jqueryui.com/demos/sortable/#empty-lists, they have CSS tags for each of the sortable ul's (sortable1, 2, and 3) like so:
CSS
#sortable1 li, #sortable2 li, #sortable3 li {
margin: 5px;
padding: 5px;
font-size: 1.2em;
width: 120px;
}
HTML
<div class="demo">
<ul id="sortable1" class='droptrue'>
(...)
</ul>
<ul id="sortable2" class='dropfalse'>
(...)
</ul>
<ul id="sortable3" class='droptrue'>
</ul>
The problem I'm having is that in my web page, I don't know ahead of time how many ul's i'll have. What's the best way to handle this without defining a every iteration of #sortable?