Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have been working on a simple newsletter, but for some weird reason there seems to be a padding/margin/extra height around every table.

Screenshot, with on the right how it should look:

I tried putting it all in one table, which didn't work. It seems to happen in every mailbox out there.

<html>
    <head>
        <meta http-equiv='Content-Type' content='text/html; charset=utf-8' />
        <title>KPN</title>  
        <style type='text/css'>
            html, body, td { font-family: arial; font-size: 12px; line-height: 24px; margin: 0px; padding: 0px; text-align: left; color:#fff }
            body { background-color: #fff; }
            a { color: #fff; text-decoration: underline; }
        </style>
    </head>
    <body><table width='600' border='0' cellspacing='0' cellpadding='0' bgcolor='#ffffff' align='center' valign='top' height='170'>
        <tr>
            <td height='170' width='600'>
                <img src='images/headerfull.jpg' height='170' style="display: block;" />
            </td>
        </tr>
    </table>
    <table width='600' border='0' cellspacing='0' cellpadding='0' bgcolor='#ffffff' align='center' valign='top' height='277'>
    <tr style='padding:0;'>
        <td align='left' valign='top' width='30'>
            <img src='images/shadow-left.jpg' width='30' height='277' />
        </td>
        <td valign='top' width='500' style='color:#1a171b;line-height:14px;font-size:11px;font-family:Verdana;-webkit-text-size-adjust:none;padding-bottom:20px;padding-left:20px;padding-right:20px;padding-top:20px;'>
           Beste heer/mevrouw naam, <br /><br />
           Van harte gefeliciteerd met uw verjaardag! Wij hebben een leuke verrassing voor u. <br />
           Kom snel naar ons hoofdkantoor door op onderstaande knop te klikken. <br /><a href='http://verjaard.ag/tq1wgdfeSdgfTd' style='color:#06a84c;'>http://verjaard.ag/tq1wgdfeSdgfTd</a><br /><br />
           We verwachten u!<br /><br /><br />
           Met vriendelijke groet,
        <table width='500' height='96' cellspacing='0' cellpadding='0' border='0'><tr align='bottom'>
            <td valign='bottom'>
                  <img src='images/kpn-logo.jpg' />
            </td>
            <td align='right' valign='bottom'>
                  <a href='http://verjaard.ag/tq1wgdfeSdgfTd'><img src='images/button.jpg' /></a>
            </td>
        </tr></table>
            </td>
              <td align='right' valign='top' width='30'> 
               <img src='images/shadow-right.jpg' width='30' height='277' />
            </td>
        </tr>
    </table>
    <table width='600' border='0' cellspacing='0' cellpadding='0' bgcolor='#ffffff' align='center' valign='top' height='80'>
        <tr >
            <td align='left' valign='top' width='600' colspan='3'>
               <img src='images/shadow-bottom-full.jpg' />
            </td>
        </tr>
        <tr>
              <td colspan='3' align='left' valign='top' width='552' style='padding-left: 48px; color:#58585a;line-height:14px;font-size:9px;font-family:Verdana;-webkit-text-size-adjust:none;'>
               Geen e-mail meer ontvangen van KPN Mobiel? Dan kunt u zich <a href='#' style='color:#58585a;line-height:14px;font-size:9px;font-family:Verdana;-webkit-text-size-adjust:none;'>hier</a> afmelden.
            </td>
        </tr>
    </table>
</body>
</html>    
share|improve this question
There don't seem to be any space between the tables. I've checked it by adding table{border:1px dashed #a00}. – Jay Sep 12 '12 at 18:12

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.