这篇文章详解使用css3的ie写法示例
linear-gradient
background: linear-gradient(to bottom, #97c1e0 0%, #086cb6 100%);
filter: progid:dximagetransform.microsoft.gradient(startcolorstr='#97c1e0',endcolorstr='#086cb6',gradienttype='0');
2.opacity
opacity:0.3;
filter: alpha(opacity=30);
以上就是使用css3的ie写法示例的详细内容。