我已经参考了许多将线性渐变应用于 ie-9 的网站,并且一些链接说不支持以及一些链接说它会起作用。任何人都可以明确我们是否可以使用线性渐变?
这是我的代码:
.top_block
{
position: fixed;
display: block;
height: 150px;
width: 105px;
z-index: 9999;
background: -webkit-gradient(linear, left top, left bottom, from(#E9E9E9), to(#D3D3D3));
background: -moz-linear-gradient(top, #E9E9E9, #D3D3D3);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#E9E9E9', endColorstr='#D3D3D3',GradientType=0 );
margin-left:72px;
left: 36%;
top: 32%;
border: 6px solid white;
border-radius: 10px 10px;
-moz-border-radius: 10px 10px;
-webkit-border-radius: 10px 10px;
padding: 15px;
}
我已经应用了这个不能在 ie-9 中工作以及在 Firefox 和 chrome 中工作正常。