I have a three column layout, and each column contains multiple blocks of
content. Each block is preceded with a section header:
<div class="section">Links</div>
<span class="link"><a
href="http://mysite.com/Hardware">Hardware</a></span><br>
<span class="link"><a
href="http://mysite.com/Software">Software</a></span><br>
The CSS for the section class is:
/* Section headers */
.section
{
font-family: "Lucida Grande", "Trebuchet MS", Verdana, Arial, san-serif;
font-size: 80%;
color: white;
background-color: #00818E;
padding-top: 2px;
padding-bottom: 2px;
padding-left: 10px;
}
The first line following the section header box is right underneath it. I'd
like to include some whitespace between the section box and it's content.
Since the section header background-color is different than the page
background-color I can't add extra padding-bottom to section, this just
makes the section header taller. How do I add 'transparent' space after the
section header?
Thanks in advance
Dave Arkley
"Dave Arkley" <do...@mail.me> wrote...