Reputation: 16629
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 not remove the spaces in Entourage email service.
Upvotes: 2
Views: 12970
Reputation: 12524
If that is the exact code you are using then padding;0;
should be padding:0;
in the first paragraph tag.
Upvotes: 3