Quote:
Originally Posted by Turtle91
I would also recommend NOT indenting the first paragraph of each chapter. This is purely artistic preference - you can do it however you wish - it just seems to be the normal way of doing things these days.
eg.
in CSS:
.chapstart {text-indent:0}
p {text-indent:1.2em}
in html:
<p class="chapstart">Just like her life.</p>
<p>yadda yadda yadda</p>
|
Or even (if you use <h1> for chapter headings) automate it with:
h1 + p {text-indent:0;}