@include linear-gradient(color-stops(#e2e2e2, #fff 600px), top);
会产生类似的东西
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(0%, #e2e2e2), color-stop(100%, #ffffff));
^ this is not 600px
我还从这篇文章中了解到,在 webkit 中我应该使用 600 而不是 600px 之类的东西。
指南针不这样做吗?
我还需要添加background-repeat: no-repeat
其他渐变会在 webkit 中重复吗?