【发布时间】:2012-08-17 04:25:12
【问题描述】:
所以根据 compass 的说法,在渐变方面,它们仅支持 Chrome、Safari、Firefox 3.6 和 Opera。
关于如何在指南针/其他一些解决方法中添加对 IE 的支持的任何想法?
代码在:
@import "compass";
.testgradient {
@include background(
linear-gradient(top left, #333, #0c0)
);
}
代码输出:
.testgradient {
background: -webkit-gradient(linear, 0% 0%, 100% 100%, color-stop(0%, #333333), color-stop(100%, #00cc00));
background: -webkit-linear-gradient(top left, #333333, #00cc00);
background: -moz-linear-gradient(top left, #333333, #00cc00);
background: -o-linear-gradient(top left, #333333, #00cc00);
background: linear-gradient(top left, #333333, #00cc00);
}
【问题讨论】:
标签: internet-explorer sass compass-sass