0

使用需要在 Outlook 365 中工作的模板。不知道为什么橙色线没有拉伸以填充空间。这是一个 HTML 电子邮件,所以不能使用 Divs。

代码笔: http ://codepen.io/leongaban/pen/HkDyx

在此处输入图像描述

<td style="100%" height="1">
  <table width="100%" cellpadding="0" cellspacing="0" border="0">
    <tr><td width="100%" height="1" bgcolor="#f67b1e"></td></tr>
  </table>
  <!-- <hr style="width: 100%; border-right: 0; border-left: 0; border: 1px solid #f67b1e;"> -->
</td>
4

2 回答 2

1

在这里,您只需声明这些线条的宽度

<table width="600" cellpadding="0" cellspacing="0">
  <tr>
    <td colspan="3" height="20" bgcolor="gray"></td>
  </tr>

  <tr id="wants_an_intro" style="font-family: 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color:#006497; text-align:center; font-size:24px; color: #f67b1e; width: 100%;">

    <td style="width:30%" height="1"> <!-- width:30% -->
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
        <tr><td width="100%" height="1" bgcolor="#f67b1e"></td></tr>
      </table>
      <!-- <hr style="width: 100%; border-right: 0; border-left: 0; border: 1px solid #f67b1e;"> -->
    </td>

    <td style="font-family: 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size:1em; color:#f67b1e;">wants an intro to</td>

    <td style="width:30%" height="1"> <!-- width:30% -->
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
        <tr><td width="100%" height="1" bgcolor="#f67b1e"></td></tr>
      </table>
      <!-- <hr style="width: 100%; border-right: 0; border-left: 0; border: 1px solid #f67b1e;"> -->
    </td>

  </tr>

  <tr>
    <td colspan="3" height="20" bgcolor="gray"></td>
  </tr>
</table>

或者 - - - -

<table width="600" cellpadding="0" cellspacing="0">
  <tr>
    <td colspan="3" height="20" bgcolor="gray"></td>
  </tr>

  <tr id="wants_an_intro" style="font-family: 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color:#006497; text-align:center; font-size:24px; color: #f67b1e; width: 100%;">

    <td  width="30%" style="" height="1">
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
        <tr><td width="100%" height="1" bgcolor="#f67b1e"></td></tr>
      </table>
      <!-- <hr style="width: 100%; border-right: 0; border-left: 0; border: 1px solid #f67b1e;"> -->
    </td>

    <td style="font-family: 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size:1em; color:#f67b1e;">wants an intro to</td>

    <td width="30%" style="" height="1">
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
        <tr><td width="100%" height="1" bgcolor="#f67b1e"></td></tr>
      </table>
      <!-- <hr style="width: 100%; border-right: 0; border-left: 0; border: 1px solid #f67b1e;"> -->
    </td>

  </tr>

  <tr>
    <td colspan="3" height="20" bgcolor="gray"></td>
  </tr>

</table>
于 2013-10-25T16:15:08.523 回答
1

只需设置widthtd两行或一行,文本取决于您想要的内容

查看演示http://codepen.io/anon/pen/racJt

于 2013-10-25T16:15:51.870 回答