I'm developing email templates and I need to use display:inline-block
but it's not working on gmail and outlook.
I just need to align an image with a text and I can't use a table .
Any suggestions to make the display:inline-block
work or any other solution that works on outlook and gmail?
this my code:
<div>
<span style="display:inline-block;">this is not<br/> working:</span>
<a href="" target="_blank"><img style="vertical-align:middle;" alt="" border="0" src="img.jpg"></a>
</div>
thanks