Say I have a bunch of P, LI, or DIV elements, with nothing between them. I want to control the vertical spacing between them, so they don\'t fit so tightly. But I don\'t want
Use adjacent selectors
p + p { margin-top: 10px; }
Basically the concept is that, if a p comes after another p give 10px margin in between.
p
You usage is something similar to
p + p, li + li, div + div { margin-top: 10px; }