Quote:
Originally Posted by Turtle91
I was a little confused over that too...but I think they are referring to using margins this way:
Code:
.SecBrk {margin-top:2em}
<p>Para before the break/</p>
<p class="SecBrk">Para at the break.</p>
<p>Para after the break.</p>
I don't think they were trying to justify the empty paragraphs. (at least that's the way I choose to interpret it to preserve my sense of a well ordered world!  )
|
Your section break should be padding-top: and not margin-top:. The reason being that padding works when the section break is at the bottom/top of the screen where as margin does not work so well at the bottom/top of the screen.