HTML Emails - Align text vertically centered

41 Views Asked by At

I'm trying to vertically align the text in my JS fiddle so it is in the middle of the image.

I want to use tables so that I can control where they align for when they stack.

I know this is possible if the tables were TD's

Any ideas?

https://jsfiddle.net/xfswnf2n/1/

<table width="600" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td valign="middle" width="400" style="vertically-align:middle;">
      <table align="left" width="190" border="0" cellspacing="0" cellpadding="0" style="display: table-cell">
        <tr>
          <td valign="top" style="vertical-align:top;">ello</td>
        </tr>
      </table>
      <table align="right" width="190" border="0" cellspacing="0" cellpadding="0" style="display: table-cell">
        <tr>
          <td><img src  alt=""></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
0

There are 0 best solutions below