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?
h2 { margin-top: 5px ) //replace 5 with whatever you want
Padding works too:
h2 { padding-top: 5px; }
精彩评论