Yahoo! mail paragraph spacing still broken
Yahoo broke it’s paragraph spacing in HTML newsletters a long time ago and still hasn’t fixed it. Usually it’s Hotmail or Outlook 2007 that get all the flack for their wacky email newsletter behavior, but dropping paragraph spacing all together really takes the cake, that’s just bizarre. There’s the age old debate on email newsletters and whether they should even exist, but like it or not they are here to stay and there’s obviously a demand for them. Email clients should at least show the basic tags properly. That said if you make email newsletters like I do, you probably want to know how to fix this.
Styling the paragraph tags
Luckily at least with my tests you don’t need inline styles, so you can use an embedded style sheet at the top of the newsletter. If you have worked with email newsletters for awhile you probably already know that most styles should be made inline, but inlining paragraph tags can be tedious depending how man you have. This fix should work either embedded or inline, so it’s up to you which method you choose.
p { margin-bottom:1em; }
Option 2:
<p style="margin-bottom:1em;">Your paragraph</p>
This should fix your Yahoo mail paragraph woes, at least until they break change something else.
Andria Strickley April 30, 2010 at 5:26 pm
You rock! Thank you so much for solving this incredibly irritating problem for me.