>looked half-assed in the spec but I can't find how to do it if I want
>to make a list display such that there's a bit of extra vertical
>space between items in the list.
Since LI is a block element you can specify margins...
li { margin-bottom: 1em; }
etc..
-dave