wrongusername
wrongusername

Reputation: 18918

Formatting h2 with css

I would like to insert a little extra space before each <h2> tag I use. Is there a way to accomplish this with CSS?

Upvotes: 0

Views: 259

Answers (2)

Martin
Martin

Reputation: 11041

Padding works too:

h2 { padding-top: 5px; }

Upvotes: 2

Galen
Galen

Reputation: 30170

h2 { margin-top: 5px ) //replace 5 with whatever you want

Upvotes: 7

Related Questions