HighDots Forums  

Creating paragraph spacing in css?

Macromedia Dreamweaver Macromedia Dreamweaver Discussions (macromedia.dreamweaver)


Discuss Creating paragraph spacing in css? in the Macromedia Dreamweaver forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
TomHuffman
 
Posts: n/a

Default Creating paragraph spacing in css? - 06-09-2004 , 06:21 PM






I'm sure this is really simple, but I can't see it. How do you create a CSS style that includes parameters for paragraph spacing? I see line spacing and word spacing, but nothing for paragraph.

Reply With Quote
  #2  
Old   
James Shook
 
Posts: n/a

Default Re: Creating paragraph spacing in css? - 06-10-2004 , 08:16 AM






Work with margins on the <p> tag.

Bear in mind that successive margins will collapse. In other words, if
you set the top margin for <p> to be 50px, and the bottom margin to be
60px, two <p>s in a pod... I mean two consecutive <p>s will not have
100px (bottom of <p> 1 60px + top of <p> 2 50px = 110px) but will have
their margins collapse to the larger of the two, in this case 60px.

--
James M. Shook
http://www.jshook.com

Reply With Quote
  #3  
Old   
James Shook
 
Posts: n/a

Default Re: Creating paragraph spacing in css? - 06-10-2004 , 08:46 AM



James Shook wrote:


Eeek! Typo:

Quote:
two consecutive <p>s will not have
110px (bottom of <p> 1 60px + top of <p> 2 50px = 110px) but will have
their margins collapse to the larger of the two, in this case 60px.

--
James M. Shook
http://www.jshook.com


Reply With Quote
  #4  
Old   
Michael Fesser
 
Posts: n/a

Default Re: Creating paragraph spacing in css? - 06-10-2004 , 09:38 AM



.oO(TomHuffman)

Quote:
I'm sure this is really simple, but I can't see it. How do you create a
CSS style that includes parameters for paragraph spacing? I see line
spacing and word spacing, but nothing for paragraph.
HTML:

<p>This is a paragraph.</p>
<p>And this another.</p>

CSS:

p {margin: 1em 0} /* This seems to be the default in many browsers. */

Micha


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.