Hotmail places your email inside a div with a class named “ExternalClass” – here are the properties they have set on that class:
.ExternalClass{display:inline-block; line-height: 131%};
This has no effect on your email when using IE but every other browser the email will not be centered.
To overwrite this simply include this in your embedded CSS:
.ExternalClass {width: 100%;}
I found this to be a great resource for other similar Hotmail issues: Emailology.org
1
solved How do I get my email to center in Hotmail? [closed]