Arnie Shafer wrote:

Some members have frowned on my use of the <BR> tag to create the desirable 
line spaces  Sometimes one, sometimes two, or possibly three line spaces are desired.

Simple question: What is a better way to accomplish this other than, <br /><br />,br /> Thanks for your input.



I would maybe make a special class for margins

html:
<p class="bottom3orwhatever">text and stuff that you want an extra space after</p>
<p>next paragraph of text with no special spacing maybe?</p>


alternative could be to apply that to one <br class="bottom3orwhatever" /> but I'd probably just do the paragraph tags.

css:
.bottom3orwhatever {
margin-bottom: 30px; /*adjust according to the spacing desired of course */
}


Arnie Shafer
Please visit the Shafer Family Web site at:
http://abshafer.com
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to