remove spaces between paragraphs
I am trying to remove the space between 2 consecutive paragraphs.
<p style="margin:0; padding:0;"> Text </p>
<p style="margin:0; padding:0; "> more text</p>
I am using inline styles because I am trying to create html email. However it does n开发者_C百科ot remove the spaces in Entourage email service.
If that is the exact code you are using then padding;0;
should be padding:0;
in the first paragraph tag.
精彩评论