这是一个新手问题.是否可以创建更多的标题样式,如h7,h8等.我只是想知道是否有可能在网站上有超过6种不同类型的标题.
我正在使用 Mailchimp 和我自己的 HTML 构建 HTML 电子邮件活动。我听说要构建成功的 HTML 电子邮件,您必须专注于使用表格,并使用内联 CSS。我已经从我的样式中删除了所有填充,并以 0 度量添加到边距、填充、边框和轮廓标签。有什么建议吗?真的坚持这一点。
<body style="background:blue; margin:0; padding:0; border:0; outline:0;">
<div id="wrap" style="background:green; width:100%;">
<table width="100%">
<tr>
<td style="
width:100%; margin:0; padding:0; border:0; outline:0;
height:100px;
background:#4b86fc;
background-size:60px 60px;
">
</td>
</tr>
</table>
<table width="500" align="center">
<tr>
<td style="
padding:20px 0px 25px 0px;
color:#000; font-family:Verdana, Geneva, sans-serif;
font-weight:100; font-size:12px;">
<p>Hi,</p>
<p>Lorem ipsum dolor sit amet.</p>
<p>Many Thanks,
Liam</p></td>
</tr>
</table>
<table width="100%">
<tr>
<td style="
width:100%; margin:0; padding:0; border:0; outline:0;
background-color:#ebebeb;
background:#ebebeb;
border-top:1px …
Run Code Online (Sandbox Code Playgroud)