[thelist] HTML lists: spacing between items
Aylard JA (James)
jaylard at equilon.com
Tue May 9 18:57:17 2000
Erika
> is there a way to extra space between items in a ul or ol without
> having to use <br> tags?
Using <br> elements within or following each <li> element is
probably the easiest, most-cross-browser-compatible way to do what you want
to do. Otherwise, you can use style sheets:
<style type="text/css">
li { padding-bottom: 1.5em }
</style>
Be forewarned, however: this produces crazy results in Navigator
4.x. IE4+, Mozilla 15, and Opera 3.6 handle it properly, however.
hth,
James Aylard
jaylard@equilon.com