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?
Is it possible with CSS and the latest Chrome or Firefox to automatically remove
Share
You just need
h1:first-child { margin-top: 0px; }DEMO