The border-radius to make the button round don't work in outlook desktop.
here's the code i try in html
<table border="0" cellspacing="0" cellpadding="10" valign="top">
<tr>
<td class="outlook-btn" align="center" style="font-size:18px; background-color:#FFFFFF;">
<font face="Arial, sans-serif">
<a href="#" style="padding: 10px 25px; border-radius:5px; color:#df0024; text-decoration:none;">GET STARTED</a>
</font>
</td>
</tr>
</table>
conditional comments for outlook
.outlook-btn{
padding: 10px 25px !important;
border-radius: 20px !important;
border: 1px solid #000000 !important;
}
Since 2007, Outlook on Windows uses Word as a rendering engine. And that engine hasn't really been updated since 2007, so it doesn't support any HTML or CSS that came up since. And so it doesn't support
border-radius. (You can check CanIEmail.com for details about CSS support in Outlook and other email clients: https://www.caniemail.com/features/css-border-radius/).A common solution to get rounded corners in Outlook on Windows is to use VML. It's an image format akin to SVG. Campaign Monitor has a button generator that uses VML for Outlook on Windows: https://buttons.cm/ (But note that VML can have a negative impact on accessibility, for example making links in VML unavailable to keyboard users.)