Reputation: 4040
Here is an HTML of my signature:
<p class="x_MsoNormal"><strong>Name</strong></p>
<p class="x_MsoNormal"><strong>Title</strong></p>
<p class="x_MsoNormal"><strong>Company</strong></p>
But when I copy paste it to my Mailspring client I get huge space between lines. How can I reduce it? Please advise
Upvotes: 1
Views: 745
Reputation: 18619
It's because <p>
elements have margins by default. Use <div>
elements for grouping:
<div class="x_MsoNormal"><strong>Name</strong></div>
<div class="x_MsoNormal"><strong>Title</strong></div>
<div class="x_MsoNormal"><strong>Company</strong></div>
Upvotes: 2