生成された電子メールのテンプレートとして次のhtmlがあります。IEでテンプレートを開くと、Chromeはすべて正常に動作し、期待どおりに表示されます。
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style>
.wrap{
border:2px solid #CCC;
background:#FFF;
width:600px;
}
.wrap2{
border:2px solid #CCC;
background:#CCC;
}
</style>
</head>
<div class="wrap" width="600">
<!--<h3>Email Alert</h3>-->
<table>
<tr>
<td>
<font color="#999999">
<strong>Start Time </strong>
</font>
</td>
<td> : 1212 12 12 12</td>
</tr>
<tr>
<td>
<font color="#999999">End Time </font>
</td>
<td align="left"> : 1212 12 12 12</td>
</tr>
<tr>
<td>
<font color="#999999">Location </font>
</td>
<td align="left"> : Sri Lanka</td>
</tr>
<tr>
<td>
<font color="#999999">Description </font>
</td>
<td align="left"> : blah blaah blah</td>
</tr>
</table>
<div class="wrap2">
<small>This email alert is automatically generated for the appointment created </small>
<br/>
<small>You are receiving this email because you set a reminder for this appointment on the calendar .</small>
</div>
</div>
<body>
</body>
</html>
しかし、テンプレートとして電子メールに送信すると、Outlookはそれを独特の方法でレンダリングします。下の画像をご覧ください。600px
私が与えた固定幅では動作しません。Outlook2007で電子メールウィンドウのサイズを変更すると拡大します。
誰かが問題を教えてもらえますか?