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
You can use adjacent selectors. You can define like this:
p + p{ margin-top:0; }
OR
p ~ p{ margin-top:0; }