Removing top margin from first element using modern CSS

css, html, margin, printing

Solution

You just need `h1:first-child { margin-top: 0px; }` DEMO

Problem

Is it possible with CSS and the latest Chrome or Firefox to automatically remove the top margin from the first `<h1>` tag, or do I have still have to use jQuery?

Original source