Aug 29, 2006 #1 ironhide1975 Programmer Joined Feb 25, 2003 Messages 451 Location US Is there anyway in a CCS style sheet to tell it not to put a space at the end of the paragraph?
Aug 29, 2006 1 #2 cLFlaVA Programmer Joined Jun 14, 2004 Messages 6,450 Location US two ways: (inline) Code: <p style="margin-bottom: 0; padding-bottom: 0;">blah</p> (style sheet) Code: p { margin-bottom: 0; padding-bottom: 0; } *cLFlaVA ---------------------------- [tt]mr. pibb + red vines = crazy delicious![/tt] [URL unfurl="true"]http://www.coryarthus.com/[/url] Upvote 0 Downvote
two ways: (inline) Code: <p style="margin-bottom: 0; padding-bottom: 0;">blah</p> (style sheet) Code: p { margin-bottom: 0; padding-bottom: 0; } *cLFlaVA ---------------------------- [tt]mr. pibb + red vines = crazy delicious![/tt] [URL unfurl="true"]http://www.coryarthus.com/[/url]