Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Get rid of extra space at end of paragraph 1

Status
Not open for further replies.

ironhide1975

Programmer
Feb 25, 2003
451
US
Is there anyway in a CCS style sheet to tell it not to put a space at the end of the paragraph?

 
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]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top