Reputation: 18918
I would like to insert a little extra space before each <h2> tag I use. Is there a way to accomplish this with CSS?
<h2>
Upvotes: 0
Views: 259
Reputation: 11041
Padding works too:
h2 { padding-top: 5px; }
Upvotes: 2
Reputation: 30170
h2 { margin-top: 5px ) //replace 5 with whatever you want
Upvotes: 7