BoulderBum
Programmer
So I'm trying to use a table layout (ordinarily bad, but said to be a necissity when emailing HTML-formatted emails), and everything looks fine in Hotmail online, but Outlook is ignoring my fixed width and allowing text to stretch to 100% of the width of the email:
Does anyone know how to properly constrain the width so Outlook doesn't mess things up?
MCP, MCTS - .NET Framework 2.0 Web Applications
Code:
<html>
<body style="text-align: center;">
<table border="0" cellpadding="0" cellspacing="0" width="600px" style="margin: 0 auto;">
<tr valign="top" align="left">
<td>[b]This test stretches 100%.[/b]</td>
</tr>
</table>
</body>
</html>
Does anyone know how to properly constrain the width so Outlook doesn't mess things up?
MCP, MCTS - .NET Framework 2.0 Web Applications