Spacing between bullet list rows
css, html
Solution
Add `top` and `bottom` padding to the `li`s, like so:
ul li { padding: 5px 0px; }
And take out that crazy looking `<p />` tag.
Demo: http://jsfiddle.net/aFED2/
Problem
How do I set the spacing between bullet lists? - asdfasdf - asdf23223 I want to put a little more space between the first and second rows like ``` <ul> <li>asdfasdf</li> <p /> <li>asdf23223</li> </ul> ```