How to remove the space between paragraphs (p)
Try setting margin-bottom: 0
on the top paragraph and margin-top: 0
to the bottom paragraph
or you can use a div instead of the paragraph
You can set the default margin to zero with CSS:
p {
margin: 0px;
}
You can use margin: 0;
to remove the spaces.
p { margin: 0; }
If this still don't work, try making it !important
p { margin: 0 !important; }
Check this http://jsfiddle.net/zg7fP/1/