HTML Outlook电子邮件中的CSS表列自动宽度

时间:2019-01-04 07:16:08

标签: css button html-table outlook html-email

我正在尝试在HTML电子邮件中创建一个集中按钮。我希望这里的棘手部分是按钮的宽度尽可能大。除了在Outlook中,以下代码可以完美地工作。

这是HTML:

<table width="100%" border="0" cellpadding="0" cellspacing="0">
    <tbody>
        <tr>
            <td></td>
            <td style="width:1%;white-space:nowrap">
                <a href="#" style="text-decoration:none">
                    <table width="100%" border="0" cellpadding="0" cellspacing="0">
                        <tbody>
                            <tr>
                                <td align="center" style="margin-top:16px;padding:8px 16px 8px 16px;background-color:#5091cd;border-radius:2px">
                                    <a href="#" style="font-size:15px;letter-spacing:.04em;color:#ffffff;text-transform:uppercase;text-decoration:none;display:block;text-align:center;max-width:600px;overflow:hidden;text-overflow:ellipsis">
                                        Go to platform
                                    </a>
                                </td>
                            </tr>
                        </tbody>
                    </table>
                </a>
            </td>
            <td></td>
        </tr>
    </tbody>
</table>

预期结果是:

实际可视化:

1 个答案:

答案 0 :(得分:0)

增加td标签的宽度将帮助您调整一行内容。

<style="width:20%;white-space:nowrap">

如果要使用容器的整个宽度,请使td width为auto。

当前,td标签的宽度决定了内容文本的包装方式。