画像を使用せずに Outlook で角丸を作成する
CSS プロパティ border-radius を使用して、多くの電子メール クライアントで角丸を実装できます。ただし、Outlook はこのプロパティをネイティブにサポートしていません。画像を使用する代替方法もありますが、制限がかかる可能性があります。 Outlook で画像を使用せずに角を丸くする手法はありますか?
Outlook 2010 では、条件付きコメントと VML (Vector Markup Language) を使用したソリューションが提供されています。このコードは、角が丸いボタンを生成できます:
<code class="html"><div> <!--[if mso]> <v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="http://www.EXAMPLE.com/" style="height:40px;v-text-anchor:middle;width:300px;" arcsize="10%" stroke="f" fillcolor="#d62828"> <w:anchorlock/> <center style="color:#ffffff;font-family:sans-serif;font-size:16px;font-weight:bold;"> Button Text Here! </center> </v:roundrect> <![endif]--> <!--[if !mso]><!--> <table cellspacing="0" cellpadding="0"> <tr> <td align="center" width="300" height="40" bgcolor="#d62828" style="-webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; color: #ffffff; display: block;"> <a href="http://www.EXAMPLE.com/" style="color: #ffffff; font-size:16px; font-weight: bold; font-family:sans-serif; text-decoration: none; line-height:40px; width:100%; display:inline-block"> Button Text Here! </a> </td> </tr> </table> <!--<![endif]--> </div></code>
このメソッドは、Outlook 2010 と主要なブラウザーでサポートされています。 OWA、Outlook.com、またはモバイル ブラウザーでは機能しません。
以上が画像を使用せずに Outlook メールの角を丸くする方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。