在 Outlook 2013 中设置 table 单元格的宽度
Setting width of table cell in Outlook 2013
我正在尝试用 table 个单元格制作列表项。不同的电子邮件客户端是不同的。
此处为Outlook 2011,间距正确
此处为 Outlook 2013,间距不正确
这是我写的代码。
<tr>
<td class="dot" style="padding-top: 10px;" valign="top" width="20px">•</td>
<td style="font-family: 'Open Sans', sans-serif; font-size: 21px; font-weight: 300; line-height: 1.48; color: #474747;" valign="top" class="">Identify and target conquest customers by vehicle, FICO, payments remaining, and more</td>
</tr>
<tr>
<td class="dot" style="padding-top: 10px;" valign="top" width="20px">•</td>
<td style="font-family: 'Open Sans', sans-serif; font-size: 21px; font-weight: 300; line-height: 1.48; color: #474747;" valign="top" class="">Automatically market to pre-qualified customers coming in for service</td>
</tr>
<tr>
<td class="dot" style="padding-top: 10px;" valign="top" width="20px">•</td>
<td style="font-family: 'Open Sans', sans-serif; font-size: 21px; font-weight: 300; line-height: 1.48; color: #474747;" valign="top" class="">OEM Partnerships and Co-Op Eligibility</td>
</tr>
<tr>
<td class="dot" style="padding-top: 10px;" valign="top" width="20px">•</td>
<td style="font-family: 'Open Sans', sans-serif; font-size: 21px; font-weight: 300; line-height: 1.48; color: #474747;" valign="top" class="">Exclusive access to expiring lease data from Experian</td>
</tr>
尝试设置内部单元格的宽度"style"...
<td class="dot" style="padding-top: 10px; width:20px;" valign="top">•</td>
我正在尝试用 table 个单元格制作列表项。不同的电子邮件客户端是不同的。
此处为Outlook 2011,间距正确
此处为 Outlook 2013,间距不正确
这是我写的代码。
<tr>
<td class="dot" style="padding-top: 10px;" valign="top" width="20px">•</td>
<td style="font-family: 'Open Sans', sans-serif; font-size: 21px; font-weight: 300; line-height: 1.48; color: #474747;" valign="top" class="">Identify and target conquest customers by vehicle, FICO, payments remaining, and more</td>
</tr>
<tr>
<td class="dot" style="padding-top: 10px;" valign="top" width="20px">•</td>
<td style="font-family: 'Open Sans', sans-serif; font-size: 21px; font-weight: 300; line-height: 1.48; color: #474747;" valign="top" class="">Automatically market to pre-qualified customers coming in for service</td>
</tr>
<tr>
<td class="dot" style="padding-top: 10px;" valign="top" width="20px">•</td>
<td style="font-family: 'Open Sans', sans-serif; font-size: 21px; font-weight: 300; line-height: 1.48; color: #474747;" valign="top" class="">OEM Partnerships and Co-Op Eligibility</td>
</tr>
<tr>
<td class="dot" style="padding-top: 10px;" valign="top" width="20px">•</td>
<td style="font-family: 'Open Sans', sans-serif; font-size: 21px; font-weight: 300; line-height: 1.48; color: #474747;" valign="top" class="">Exclusive access to expiring lease data from Experian</td>
</tr>
尝试设置内部单元格的宽度"style"...
<td class="dot" style="padding-top: 10px; width:20px;" valign="top">•</td>