Quote:
Originally Posted by salty-horse
Much better, thanks.
I replaced all:
Code:
<p class="CLASSNAME"><br/></p>
with
Code:
<div class="CLASSNAME"></div>
and changed the styles of those classes from "margin: 0 0 0 0; line-height: X" to "margin: X 0 X 0", and added a rule for "div.br" with a 1em margin.
|
What I would use is the following so you don't have these extra lines that you don't really need.
Code:
<p class="spacet">Some Paragraph text.</p>
Code:
.spacet {
padding-top: 1em;
}
The reason for the padding is that the 1em space doesn't get lost when the space is at the bottom or top of the screen.