基于填充的按钮
这种技术依赖于表格单元级别的填充来构造按钮,以及 HTML 属性和 CSS 来设置按钮的样式。没有 VML
意味着更简单的代码,但 Outlook 中没有背景图像。
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor="#0095FF" style="padding: 12px 18px 12px 18px; -webkit-border-radius:3px; border-radius:3px" align="center"><a href="http://www.stackoverflow.com" target="_blank" style="font-size: 14px; font-family: sans-serif; font-weight: normal; color: #ffffff; text-decoration: none; display: inline-block;">Stack Overflow</a></td>
</tr>
</table>
</td>
</tr>
</table>
https://i.stack.imgur.com/lVUYu.jpg
基于填充的按钮的缺点是按钮的整个区域不可点击,只有表格单元格内的链接。