Page 1 of 1

indention

Posted: Thu May 30, 2002 11:43 pm
by hob_goblin
is there a tag, which indents as well as making a new paragraph, or just plain indents? i'm tired or writing & nbsp; over and over

basically is there a shortcut to insert a tab, indention, or anything...

Posted: Fri May 31, 2002 2:02 am
by twigletmac
If you need to indent the first line try some CSS.

A CSS declaration of,

Code: Select all

P { text-indent: 10px; }
will cause all paragraphs to have a first line indent of 10 pixels.

Mac

Posted: Fri May 31, 2002 10:45 am
by fatal
a shortcut for tab is '\t', and it can be used in PHP.

Posted: Fri May 31, 2002 1:51 pm
by hob_goblin
awesome, I'll try the css thing