したがって、コンパスによると、グラデーションに関しては、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);
}