views:

68

answers:

1

As we all know, most email clients don't support all CSS attributes. If I want to vertically align images and text, what's the most compatible means of doing so?

Right now, I'm doing:

<img style="position:relative;top:3px;" src="http://url.com/img.jpg" /> <span>Words and stuff</span>

This works in some clients, but not all (particularly Gmail). Any better suggestions?

+3  A: 

I hate to say it, but <table>. CSS position is not supported well

ChssPly76
+1 for that link. Thanks.
BalusC