I have two images I am trying to put inside a mailer three rules ::
- I must use a table for layout
- I must use inline style
- No JavaScript allowed
Here is the problem. I want one image to float left and the other image to stay where it is (please see JSFiddle).
I tried adding padding to the td
tag on the left but it pushes the image on right out of place. How can I make it so that the "contrasto" image is to the left side of the cell as opposed to the right?
<table>
<tr>
<td>
<img height="50" src="http://www.reduxpictures.com/newsletter/stock_oct13/Contrasto.png" style="padding: 0 200px 0 0" width="174"/>
</td>
<td>
<img class="logo" height="50" src="http://www.reduxpictures.com/newsletter/stock_oct13/Luz.png" width="174"/>
</td>
</tr>
</table>