Forum Moderators: mack
<blockquote></blockquote> Instead of using the above tag, you could always style your
<p></p> to have text indents by using margin or padding. p{margin:15px;} or...
p{padding:15px;} That will give the paragraphs a 15px margin top, right, bottom and left. If you need different margins on 4 sides, then you would list each one like this...
p{margin:15px 30px 10px 30px;} The CSS shorthand sequence above is 15px (top), 30px (right), 10px (bottom) and 30px (left).