views:

87

answers:

0

I have a table with three cells as a signature for Outlook. However, the third cell occupies a lot more space because it has a lot more text, causing the entire table row to be pushed down, so the other two cells have huge gaps of white space. I'm just trying to have the three cells take up equal vertical space, no matter how far the width of the third cell needs to be expanded to:

<style>
#wrapper {
    border-top: 2px solid #6f9045;
    border-bottom: 2px solid #6f9045;
}

#secondwrapper {
border-top: 2px solid #c9d9b4;
border-bottom: 2px solid #c9d9b4;
}

table {
    width: 74%; /* Even when using pixels, it still gave same problem*/
    border-collapse: collapse;

    font: normal normal normal .8em/1.5 'Optima', Verdana, Arial, sans-serif;  
    color: #254117;
}
td {
    border-right: 1px dotted #9bb09e;
    padding: 10px 0 10px 20px;
    vertical-align: text-top;
}
td.border-absent {
    border-right: none;
    min-width: 200px;
}
</style>
<div id="wrapper">
<div id="secondwrapper">
<table>
<tr>
    <td style="width: 18%;">
        <span style="color: #254117; font-weight: bold;">John Merlino</span>. <br />
        Partner, <span style="font-weight: bold; font-style:italic;"> myus </span><br />
        100 South Lane<br />
        Pitt, PA 33305<br />
        <img src="1.png" alt="logo" /> <br />
    </td>
    <td style="width: 18%;">
        <span style="color: #6c8f3f; font-style: italic;"> Contact Information </span><br />
        800-610-1000 <br />
        800-610-1000 (Fax) <br />
        Web: <a href="http://www.myus.com" style="color: #254117; text-decoration: none; border-bottom: 1px #999999 dotted;">myus.com</a>  <br />
    </td>
    <td class="border-absent" width="48%">
        Confidentiality Notice: This e-mail may contain confidential or legally privileged information that is intended only for the individual or entity named in the e-mail address. If you are not the intended recipient, you are hereby notified that any disclosure, copying, distribution, or reliance upon the contents of this e-mail is strictly prohibited. If you have received this e-mail transmission in error, please reply to the sender, so that we can arrange for proper delivery, and then please delete the message. Thank you. 
    </td>
</tr>