0
我想在瀏覽器中有線性背景漸變。它在FF中工作,但在Chrome中不起作用。我的CSS看起來如下:背景漸變不工作在鉻(工作在Firefox)
/* works in FF */
background: -moz-linear-gradient(center top , rgb(40, 40, 40) 0px, rgb(10, 10, 10) 100%) repeat scroll 0% 0% transparent;
/* Not working in chrome */
background: -webkit-linear-gradient(center top , rgb(40, 40, 40) 0px, rgb(10, 10, 10) 100%) repeat scroll 0% 0% transparent;
什麼是錯?
注:在未來使用[終極CSS漸變生成器(HTTP: //www.colorzilla.com/gradient-editor/),它會晃動。從生成器中,[您的代碼在鉻中工作的示例](http://jsfiddle.net/WL9wL/)。 – Vucko
非常感謝....我會盡快答覆並接受。 – GJain