Changing Spacing Between Paragraphs and Inside of Paragraphs

How to reduce the space between p tags?

use css :

p { margin:0 }

Try this wonderful plugin http://www.getfirebug.com :)

EDIT: Firebug is now closed as a project, it was migrated to https://www.mozilla.org/en-US/firefox/developer

Decrease the space between header and paragraph vertically in html

Try adjusting the line height property using CSS. I would recommend giving it an id though if you only want it to affect this p tag in particular

p {
line-height: 0px;
}

There is also the possibility of negative margins (which isn't considered best practice, but will work in your case):

p {
margin-top:-5px;
}


Related Topics



Leave a reply



Submit