首先,这是针对email的,所以我不能把css放在head里,只能放在table、td、ul等。
我将粘贴我的代码片段和它在 IE、Firefox 和 MS Outlook 中的样子的屏幕截图。
<html>
<head>
</head>
<body>
<table cellpadding="5" style="font-family:Arial, Helvetica, sans-serif; font-size:12px; color:#333; border-left: solid 1px #e9e9e9; border: thin groove #CCCCCC">
<tr bgcolor=#FF8100 valign="top">
<td style="border-bottom-style: groove; border-bottom-width: thin"><strong>To Do</strong></td>
<td style="border-bottom-style: groove; border-bottom-width: thin"><strong>Document</strong></td>
</tr>
<tr bgcolor=#FFCA99 valign="top">
<td>Review
</td>
<td>
<ul style="margin: 0px 0px 0px 15px;">
<li>Good Faith Estimate - outlines all the fees and costs associated with your loan</li>
<li>Uniform Residential Loan Application (If your property is in New York, Ohio or Mississippi, please sign this form and upload it to My Status or fax it back to me at @AGENT.FAX.)</li>
</ul>
</td>
</tr>
</table>
</body>
</html>
它在 IE 中看起来很棒,但在 Firefox 中有很大的余量,而在 Outlook 中,只有一小部分项目符号显示出来。
IE:
火狐:
外表:
我必须假设观众可能会使用所有这些选项来查看这封电子邮件,那么我怎样才能让它看起来普遍呢?我尝试将填充放在 ul 样式中,我尝试制作子弹图像,将其用作 li 背景图像,并且不给 ul 样式......这也不起作用。我尝试的所有内容在 3 次电子邮件视图中至少有 2 次看起来都很糟糕。
我真的很感激帮助!
(Gmail 对 css 的解释是最严格的,所以我必须遵守他们的规则。这些可以在这里找到 -> http://www.campaignmonitor.com/css/ 你可以看到 Android 上的 Gmail 不允许list-style-x,所以我不能使用它们。我只能使用带有所有绿色复选标记的那些。)
谢谢!-冬青