12

我正在尝试float: left一些表格,但遇到了一个大问题,outlook 不支持浮动。好吧,然后我尝试使用表格对齐等,但没有运气。这些表格只是显示在彼此下方,而不是彼此并排。对此有什么可以做的吗?

PS:它可以在其他设备上正常工作,它只有 Outlook,我不能给每个表一个 td,因为它会破坏其他一些东西。

标记:

<table class="products">
   <tr>
      <td align="left" class="test">
         <!-- Product 1  -->
         <table align="center">
            <tr>
               <td class="product">
                  <a href="#">
                     <img src="#"/>
                  </a>
               </td>
            </tr>
         </table>
         <!-- Product 2  -->
         <table align="center">
            <tr>
               <td class="product">
                  <a href="#">
                     <img src="#"/>
                  </a>
               </td>
            </tr>
         </table>
         <!-- Product 3 -->
         <table align="center">
            <tr>
               <td class="product">
                  <a href="#">
                     <img src="#"/>
                  </a>
               </td>
            </tr>
         </table>
         <span class="clear"></span>    
      </td>
   </tr>
 </table>
4

6 回答 6

29

使用 width="" 设置每个对齐表格的宽度,而不是 CSS。

一个有效的例子:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title></title>
  <style type="text/css">
    table td { border-collapse: collapse; }
    .msoFix { mso-table-lspace:-1pt; mso-table-rspace:-1pt; }
  </style>
</head>
<body style="margin: 0px; padding: 0px; background-color: #FFFFFF;" bgcolor="#FFFFFF">


<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
  <tr>
    <td align="center">
      <div style="max-width:640px !important;">

        <table class="msoFix" width="320" cellpadding="0" cellspacing="0" align="left" bgcolor="#CCCCCC">
          <tr>
            <td width="15" bgcolor="454545">&nbsp;</td>
            <td width="290" bgcolor="454545" align="left" style="padding: 0px;">&nbsp;<br>Table 1<br>...<br>&nbsp;
            </td>
            <td width="15" bgcolor="454545">&nbsp;</td>
          </tr>
        </table>

        <table class="msoFix" width="320" cellpadding="0" cellspacing="0" align="left" bgcolor="#EEEEEE">
          <tr>
            <td width="15" bgcolor="959595">&nbsp;</td>
            <td width="290" bgcolor="959595" align="left" style="padding: 0px;">&nbsp;<br>Table 2<br>...<br>&nbsp;
            </td>
            <td width="15" bgcolor="959595">&nbsp;</td>
          </tr>
        </table>

      </div>
    </td>
  </tr>
</table>

</body></html>

此外,Outlook 在对齐的表格之间放置了 4-5 像素的间隙。添加它会将其修剪到大约 1px:

<style type="text/css">
   .msoFix {
      mso-table-lspace:-1pt;
      mso-table-rspace:-1pt;
   }
</style>

要完全摆脱它,您必须为表格添加边框(另一个 Outlook 怪癖黑客)。

于 2013-07-16T13:04:02.777 回答
5

只需将每一个 sub-table放入一个自己td的 outertable中。由于tds 彼此相邻,因此tables 也会如此。

尝试创建 HTML 电子邮件时,代码类似于 1997

于 2013-07-16T10:32:41.077 回答
2

如果您可以忍受 Outlook 中的 2 个表不“响应”(一个在彼此下方),那么这对我有用:

........
<!--[if gte mso 9]>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
    <td>
<![endif]--> 

<!-- table 1 goes here -->

<!--[if gte mso 9]>
    </td>
    <td>
<![endif]-->

<!-- table 12 goes here -->

<!--[if gte mso 9]>
   </td>
  </tr>
</table>
<![endif]-->
........
于 2015-01-27T10:04:12.417 回答
1

使用一些在线资源,例如:

如何编码 HTML 电子邮件

在呈现 HTML 时,大多数电子邮件客户端都是原始的,并且会破坏许多格式良好的 HTML 元素。

以下讨论可能会有所帮助:

有哪些 HTML 电子邮件设计指南?

一些基本提示:

  • 使用表格进行布局。
  • 将最宽的表格设置为最大 600 像素宽。
  • 不要尝试使用 JavaScript 或 Flash
  • 不要在样式标签中使用 CSS,因为某些邮件客户端会丢弃它。
  • 仅使用内联 CSS 样式。
于 2013-07-16T10:31:40.250 回答
0

Outlook.com 似乎float完全过滤掉了属性,但确实支持display: inline-block.
当然,这很可能会破坏您的表格,因为它们依赖于display:table,但它可能会帮助您处理任何divs.

于 2016-02-25T16:39:30.113 回答
0

我知道自从 OP 发布这个问题以来已经很久了,但我希望它可以帮助任何需要它的人。

如果您需要一个 2 列布局,并且希望它也可以在 Outlook 中工作,那么为每个表提供一个widthof around 45%(为了安全起见,在其中align="left"也放入一个)。如果您将宽度指定为 50%,Outlook(它有自己的想法)会将其呈现为单列。

于 2018-12-27T20:17:56.760 回答