I am working on an outlook email template, I am trying to render this piece of code, especially for outlook Windows app
<div style="width:100%;">
<!--[if mso]>
<v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="{{QUEST_URL}}" style="height:36px;v-text-anchor:middle;width:100%;" arcsize="5%" strokecolor="#01AAA3" fillcolor="#01AAA3">
<w:anchorlock/>
<center style="color:#ffffff;font-family: Manrope, Tahoma;font-size:14px; font-weight: 800;line-height:30px; ">START QUEST</center>
</v:roundrect>
<![endif]-->
<a href="{{QUEST_URL}}" style="background-color:#01AAA3;border-radius:10px;color:#ffffff;display:inline-block; font-family: Manrope, Tahoma;font-size: 14px; font-weight: 800;line-height:30px;text-align:center;text-decoration:none;width:100%;-webkit-text-size-adjust:none;mso-hide:all;"> START QUEST </a>
</div>
But the anchor's width is not being rendered 100%. Text is also not showing.
I want it to be rendered like:
So, please need help in that regard.