Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Rounded corners in outlook without images

Tags:

html

css

email

I can create rounded corners in many clients with

style="-moz-border-radius: 15px; border-radius: 15px;" 

However this CSS does not create rounded corners in Outlook. Is there any easy way to create rounded corners without images in Outlook?

like image 327
Danny Avatar asked Sep 13 '11 16:09

Danny


2 Answers

This code produces buttons with rounded corners in Outlook 2010 using the Outlook conditional comments () and VML:

    <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> 

Tested in Outlook 2010 and major browsers only, not OWA, Outlook.com or any mobile browsers. It's worth a closer look. Credit where due -- http://www.industrydive.com/blog/how-to-make-html-email-buttons-that-rock/

like image 60
VanAlbert Avatar answered Sep 20 '22 21:09

VanAlbert


http://www.campaignmonitor.com/css/ displays all css supported in major email clients. Rounded borders didn't even make it to the list. On the page there is a link to a full PDF, which notes that border radius is ONLY supported in Thunderbird 2

please note that you have to embed the styles in the html elements to support a broad range of email clients


You can find the full list of supported HTML elements and CSS styles in the following series of articles:

Word 2007 HTML and CSS Rendering Capabilities in Outlook 2007 (Part 1 of 2)

Word 2007 HTML and CSS Rendering Capabilities in Outlook 2007 (Part 2 of 2)

like image 22
Benjamin Udink ten Cate Avatar answered Sep 16 '22 21:09

Benjamin Udink ten Cate