我想为我的锚标记提供高度和宽度,以便我可以在台式机或笔记本电脑上的 Outlook 应用程序中看到高度和宽度
I want to give height and width to my anchor tag so that i can see height and width in outlook application on desktop or laptop
<a href=""><button>Confirm your info</button></a>
我试过 display:block 或 display;inline-block。但它不适用于电子邮件模板。请提供内联 css.
我用过
<a style="width: 200px;height: 43px;display:inline-block;background-color: #245fa2;color: white;">
<button style="width: 200px;height: 43px;margin-bottom: 10px;background-color: #245fa2;color: white;font-size: 16px; border-color: #99cc33;border-radius: 5px;font-family: sans-serif,Arial,Helvetica;"></button>
</a>
电子邮件样式很麻烦。
您必须恢复到老式 HTML + table 布局才能支持电子邮件。
我认为 <按钮> 不起作用。
当我想要一个在电子邮件中看起来不错的方形块按钮时,我会写一个小的 html table 具有宽度和高度属性,< a > 文本居中对齐...
<table><tr><td><a>some text</a></td></tr></table>
然后设计 td 和内联样式。
<a href=""><button>Confirm your info</button></a>
我试过 display:block 或 display;inline-block。但它不适用于电子邮件模板。请提供内联 css.
我用过
<a style="width: 200px;height: 43px;display:inline-block;background-color: #245fa2;color: white;">
<button style="width: 200px;height: 43px;margin-bottom: 10px;background-color: #245fa2;color: white;font-size: 16px; border-color: #99cc33;border-radius: 5px;font-family: sans-serif,Arial,Helvetica;"></button>
</a>
电子邮件样式很麻烦。
您必须恢复到老式 HTML + table 布局才能支持电子邮件。 我认为 <按钮> 不起作用。
当我想要一个在电子邮件中看起来不错的方形块按钮时,我会写一个小的 html table 具有宽度和高度属性,< a > 文本居中对齐...
<table><tr><td><a>some text</a></td></tr></table>
然后设计 td 和内联样式。