outlook垂直合并单元格的方法

How to merge cells vertically in outlook

是否可以垂直合并两个单元格并保留 Outlook 2016 中的文本?

1。

2.Click 合并单元格

  1. 文本消失

或者,似乎无法使此 table 正确显示在电子邮件中(在记事本++中,通过 Outlook 选择 Run/Send),但是在浏览器中查看时,它看起来很好。

<html>
<table class="tg" border="1">
  <tr>
    <th class="tg-yw4l">Type</th>
    <th class="tg-yw4l">Power</th>
    <th class="tg-yw4l">Torque</th>
  </tr>
  <tr>
    <td class="tg-yw4l" rowspan="2">Car</td>
    <td class="tg-yw4l">120hp</td>
    <td class="tg-yw4l">100nm</td>
  </tr>
  <tr>
    <td class="tg-yw4l" colspan="2">Has 4 wheels<br></td>
  </tr>
</table>
</html>

最后,我了解到从 Outlook 2007 开始,它使用 Word (!) 呈现 html,而不是 Internet Explorer。但是,在 word 中查看此 html 时,会出现标题 "Car",但不会出现在 outlook 中。

编辑:我刚刚重新启动并让办公室安装其更新,现在原始电子邮件和 table 合并工作正常。

这是实现此目的的一种方法。删除 col span 和 rowspans 你将需要求助于更多的表,但你可以确定它会在所有设备上呈现相同的效果。

<table class="tg" border="1">
  <tr>
    <th class="tg-yw4l">Type</th>
    <th class="tg-yw4l">
    <table border="1">
    <tr>
    <th>Power</th><th>Torque</th>
    </tr>
    </table>
    </th>
  </tr>
  <tr>
    <td class="tg-yw4l" align="center" valign="middle">

      <table class="tg" border="1">
      <tr>
      <td align="center" valign="middle">Car</td>
      </tr>
      </table>

    </td>
    <td>
      <table border="1">
      <tr>
      <td>120hp</td><td>100nm</td>
      </tr>
      </table>
      <table class="tg" border="1">
        <tr>
          <td class="tg-yw4l">Has 4 wheels<br></td>
        </tr>
      </table>
    </td>
  </tr>
</table>

希望这就是您想要的。

干杯