我是 HTML 和 CSS 的新手,所以我在我的时事通讯中使用渐变色,但渐变色没有在电子邮件上呈现,所以任何人都可以帮我解决这个问题,这是我的样式标签
.DivFirst
{
padding:10px 40px;
border-radius: 50px;
width:500px;
background: -webkit-linear-gradient(#0A284B, #135887);
background: -o-linear-gradient(#0A284B, #135887);
background: -moz-linear-gradient(top, #0A284B, #135887);
background: linear-gradient(#0A284B, #135887);
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#0A284B', endColorstr='#135887', GradientType=1)";
zoom 1;
-pie-background: linear-gradient(#FFFFFF, #C5CBC3);
behavior: url(/PIE.htc);
}
这是我的 HTML 代码
<div class="DivFirst">
This is the best of the world
</div>