Outlook 2010 и таблицы HTML

Я просто создаю информационный бюллетень по электронной почте, и я не могу понять, как заставить Outlook правильно отображать мою HTML-таблицу.

Вот простой пример:

<table cellpadding="0" cellspacing="0" id="outlookHack" 
   style="table-layout:fixed; border: 0; background-color: #1E6C9D; 
          background-image: url(http://www.komix.cz/upload/img_bg.png); 
          background-repeat: repeat-y; margin-top: 0px; margin-bottom: 0px; 
          padding: 0px; margin-left: auto; margin-right: auto; 
          text-align: center;width: 620px;" width="620">
<tr>
  <td width="10" style="width: 10px; background:inherit;" height="10">&nbsp;</td>
  <td  width="600" style="width: 600px; background:ihnerit;" height="10"></td>
  <td width="10" style="width: 10px; background:inherit;" height="10">&nbsp;</td>
<tr>
<tr>
  <td width="10" style="width: 10px; background: inherit;">&nbsp;</td>
  <td  width="600" style="width: 600px; background: white;">some content...</td>
  <td width="10" style="width: 10px; background: inherit;">&nbsp;</td>
<tr>
</table>

Проблема в том, что левый и правый столбцы должны иметь фиксированный размер 10 пикселей, но Outlook 07/10 отображает их как +/- 5 пикселей.

5
задан bpeterson76 9 November 2012 в 15:35
поделиться