Радиус границы не работает в шаблонах электронной почты в Windows Outlook - PullRequest
0 голосов
/ 07 марта 2019

Я столкнулся с проблемой border-radius в шаблоне электронной почты в приложении Outlook. Я пробовал также с -WebKit-border-radius и -ms-border-radius, но он все еще не работает в приложении Outlook.

table {
  width: 32px !important;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -ms-border-radius: 50px;
  -moz-border-radius: 50px;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
}
<table align="center" height="32" width="32" bgcolor="#293248" cellspacing="0 " cellpadding="0 "></table>
...