Quote:
Originally Posted by Rizphil
Specifically, I do not want any spacing between paragraphs, and after the first paragraph, I would like an indent just like you see in a paperback book. Thanks
|
Put the following code in the <head> section of you html-file:
<style type="text/css">
/*<![CDATA[*/
p { margin: 0 0; text-indent: 1em; text-align: justify; }
/*]]>*/
</style>
Every paragraph (including the first one) will use this. It will have a small indent and there will be no space between paragraphs.
Did this get you a bit closer to the formatting you want ?