I've coded a HTML email.
I've tried setting line-height inline using pixels and percentages and gmail seems to ignore everything. Is there a way of setting this or will gmail always strip my line-height value?
psuedo-code is:
<div>
<span style="line-height: 110%">Text content</span>
</div>
Thanks
Have you tried using another unit? Maybe
emor just a multiplier without a unit?line-height: 2for example doubles the value of thefont-size.Otherwise check http://24ways.org/2009/rock-solid-html-emails for more information about HTML e-mails and post us your complete code.