Gazing into my crystal ball I observed
(Mark
Shapiro) writing in news:1jt2h95.18ol33n78cnh2N%:
> I am old school, and code pages by hand using
> a plain text editor and FTP.
>
> I have a big site, and use <BR><BR> a lot.
> I've been told that it's better to use <P> </P>
>
> But when I do that, use <P>, the text appears a
> bit smaller and not as clean on most browsers
> and computers. Is it a sin to keep using <BR><BR>?
>
>
>
The difference between BR and P is that P is for marking up a paragraph,
and BR is a forced line break.
The P element is a block level element, which means it has default top
and bottom margin, about the same as <br><br>. You can use CSS to change
the margin on paragraph(s), to be larger or smaller, as the case may be.
Of course the advantage to this is that it is one change, instead of
removing <br>'s to adjust the space.
If you are using <br> to make the width of the text smaller, then there
are several ways of doing this.
1. Put the <p>'s inside of the containing div and adjust the width on
that.
2. Adjust the right and left margins on the <p> element.
Remember, a <br> is a _FORCED_ line break. I use it sparingly, for
headings, addresses, etc.
--
Adrienne Boswell at Home
Arbpen Web Site Design Services
http://www.cavalcade-of-coding.info
Please respond to the group so others can share