SiteKickr Web Development

Clean up paragraph margins with CSS

p { margin: 0; }
p + p { margin-top: 1em; }

This simple CSS trick will cause only the 2nd and following paragraphs to have a top margin, while also bringing some cross-browser consistency to the way paragraphs are spaced.