CSS3 Global Spacing

by Shishir Morshed

HTML

<section>
    <h2>google</h2>
    <h1>yahoo</h1>
    <p>facebook</p>
</section>

CSS

* {margin: 0; padding: 0;}
section {border:1px solid #000;}
section * {margin: 20px 0}
section :last-child { margin: 20px 0 0 0}