Friday 15 August 2014

Removing table td space in a html email -



Removing table td space in a html email -

i writing html email. have sliced image in 3 pieces , wrote simple html show them 1 image. fien on browser when send email yahoo/hotmail/outlook creates space after each image (bottom). see code below.

any idea?

<html><body> <table border="0" cellpadding="0" cellspacing="0" height="944" width="580"> <tr> <td height="275" > <a href="http://www.example.co.uk/page/search?q=mistral&amp;searchsubmit.x=0&amp;searchsubmit.y=0" target="_blank"><img height="275" src="http://p4trr.emv2.com/il/0/4/1/1101020041/1951838857.jpg" style="border-width: 0px; border-style: solid; margin: 0px;" width="580" /></a></td> </tr> <tr> <td height="326" > <a href="http://www.example.co.uk/page/search?q=umbrian&amp;searchsubmit.x=10&amp;searchsubmit.y=10" target="_blank"><img height="326" src="http://p4trr.emv2.com/il/0/4/1/1101020041/183118939.jpg" style="border-width: 0px; border-style: solid; margin: 0px;" width="580" /></a></td> </tr> <tr> <td height="343" > <a href="http://www.example.co.uk/page/search?q=balzac&amp;searchsubmit.x=0&amp;searchsubmit.y=0" target="_blank"><img height="343" src="http://p4trr.emv2.com/il/0/4/1/1101020041/1581670867.jpg" style="border-width: 0px; border-style: solid; margin: 0px;" width="580" /></a></td> </tr> </table> </body> </html>

set line height of td 0 like,

css

<style> table td { line-height: 0; } </style>

html

No comments:

Post a Comment