Indenting the First Line of Each Paragraph
To indent the first line of each paragraph set a style rule using text-indent. For example, the following code indents the first line of each paragraph 30 points. Copy this code into the <HEAD>
<STYLE TYPE="text/css">
<!--
P {text-indent: 30pt;}
-->
</STYLE>
This code indents the first line of each <P ...>P<H1 ...><P ...>
So, for example, the following code does not have a
<P ...>
<H1>My Story</H1> This paragraph is not indented.
which gives us
My Story
This paragraph is not indented.
This code does have a
<P ...>
<H1>My Story</H1> <P> This paragraph is indented.
My Story
This paragraph is indented.
Copyright 1997-2002 Idocs Inc.