View Single Post
Old 05-20-2012, 07:05 PM   #5
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 73,645
Karma: 127838196
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
I find an indent of 1.2em to work best.

Code:
body {
margin-top: 0;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
text-indent: 1.2em;
orphans: 0;
widows: 0
}

p {
margin-top: 0;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
text-indent: 1.2em
}

.spacebreak {
margin-top: 2em;
text-indent: 0
}
Code:
<p>This is a paragraph with a 1.2em indent.</p>
<p>This is another paragraph with a 1.2 em indent. Notice no line space between.<p>
<p class="spacebreak">This is a paragraph with no indent and a 2em section break.</p>
That is very clean, works very well and looks good.

Last edited by JSWolf; 05-20-2012 at 07:10 PM.
JSWolf is offline   Reply With Quote