I have a rich HTML email. I was wondering how, in Outlook 2010 and 2007, you get the table in the layout to sit flush with the edge of the browser?
Have a look at th
With pure CSS (I'm not sure the makers of IE like reading that), you can use Maybe it'll work, but maybe not. I'm not sure how Outlook handles CSS...!important to force the margin and padding of the and the
to be 0px:
html, body
{
margin: 0px !important;
padding: 0px !important;
}
table
{
margin: 0px !important;
}