Correct way to space out LI's

To space out LI’s, should I use Line-Height?? :-/

Debbie

I generally use em margins. Here’s what’s in my CSS reset file:

ul, ol, li { margin: 0 0 0 1.4em; padding: 0px; }
ul, ol { margin-top: .2em; margin-bottom: .8em; }

If you only use line height to space the lists apart then when a list item wraps to another line the line it will be hard to tell if its a new list item or just a line that has wrapped because they will all be equally spaced.

Therefore use a sensible line-height for the initial line spacing but use margins to push each list item away a little more for separation between each list element.

Duh.

Sorry, Paul, I think you told me this before in another thread.

I’m still learning! :blush:

Thanks,

Debbie