Latest Lists

How do you insert distance between bullets in css?

I want to add distance between the bulleted items in a list (without adding distance between each individual line). I suppose I could create a bunch of small, invisible divs, but there must be another way. Using paragraph tags puts way too much space in for what I need. Sorry if this sounds stupid, but I'm not much of an expert in html/css.

Public Comments

  1. <ul> <li style="margin-bottom:5px;">Item 1</li> <li style="margin-bottom:5px;">Item 2</li> <li>Item 3</li> </ul> Replace 5px with the amount of space you want. Alternatively, you could use padding-bottom instead of margin-bottom. Padding adds space inside of the element, while margin adds space outside of the element.
Powered by Yahoo! Answers