How to set the first line of a paragraph indent ?
Printable View
How to set the first line of a paragraph indent ?
There's problably a CSS style you can use, but if you want it cross-browser and don't care about having a true indent, just use space!!
<p> You text starts here bla bla bla</p>
It's the text-indent of the P tag:
http://www.w3schools.com/css/pr_text_text-indent.asp
-tg
Which, by the way, is very cross-browser compatible: even Netscape 4 understands it, if I remember correctly.
Thanks.