Is there a way of defining the line spacing between headers. I know using various header tags(h1, h2, h3) have various line spacing and I was wondering if there's a way of defining a line spacing for all of them, so that they are consistent and fluid throughout the page?
There are lots of articles on using margin and such, but I'm not too sure about it.
If you are not familiar with CSS I suggest reading a little: CSS Intro: http://www.w3schools.com/css/default.asp
CSS like this would set the line height for all of your header tags:
h1, h2, h3, h4, h5, h6{
line-height: 30px;
}
Or this would set top and bottom margin's for all headers:
h1, h2, h3, h4, h5, h6{
margin-top:20px;
margin-bottom:10px;
}