Re: <p> ... </p>

You, Scott Nelson wrote:
++ 
++ This is very confusing to me, sorry.
++ 
++ If I write:
++     <P ALIGN=CENTER>  
++          This is the first paragraph.
++     <P> 
++          This is the second.
++     </P>
++ 
++ Is the second paragraph centered?

No. The second <p> ends the first paragraph, hence the secod paragraph
does not get centered. If you want both paragraphs to be centered, use:

<p align = "center">First
<p align = "center">Second</p>

Or alternatively, (but in my opinion usually less good):
<div align = "center">
<p>First
<p>Second
</div>



Abigail

Received on Tuesday, 19 December 1995 15:38:42 UTC