View Single Post
Old 07-02-2014, 02:56 PM   #2
eschwartz
Ex-Helpdesk Junkie
eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.
 
eschwartz's Avatar
 
Posts: 19,421
Karma: 85400180
Join Date: Nov 2012
Location: The Beaten Path, USA, Roundworld, This Side of Infinity
Device: Kindle Touch fw5.3.7 (Wifi only)
Don't use non-breaking-space filler paragraphs. Use a default:

Code:
p {
    display: block;
    font-size: 1em;
    margin-top: 0.25em;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    text-align: justify;
    text-indent: 5pt;
}
and whenever you need extra space use:

Code:
.spacerMedium {
    margin: 1em 0 0 0;
}
Example:

Code:
<p>A full paragraph of text before the gap...</p>
<p class='spacerMedium'>This paragraph has some space before it.</p>
Never use blank paragraphs for spacing. That is what margins are for. It's much cleaner that way.

Last edited by eschwartz; 07-02-2014 at 07:44 PM.
eschwartz is offline   Reply With Quote