1
@include linear-gradient(color-stops(#e2e2e2, #fff 600px), top);
會產生類似SASS指南針線性漸變
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(0%, #e2e2e2), color-stop(100%, #ffffff));
^this is not 600px
我也是從this post瞭解到,在WebKit的,我應該使用類似600,而不是600像素。
Compass不這樣做嗎?
另外我需要添加background-repeat: no-repeat
否則漸變將在webkit中重複?