0
background: -moz-linear-gradient(center bottom , #303030, #3A3A3A) repeat scroll 0 0 transparent;

我尝试background:-webkit-linear-gradient (center bottom , #303030, #3A3A3A) repeat scroll 0 0 transparent; 了chrome,但没有用。同样对于 IE,我尝试ms-linear-gradient使用相同的值,但效果不佳。

4

3 回答 3

3

这里有一个很好的工具可用于为渐变生成 css:

http://www.colorzilla.com/gradient-editor/

对于其他 css3,您可以使用: http ://www.css3generator.com/

于 2012-08-14T15:41:08.807 回答
1

要么使用这个很棒的渐变应用程序,要么使用css3please.com

于 2012-08-14T16:01:53.423 回答
0

知道linear-gradient语法最近发生了变化:

  • 起点关键字(center, bottom)已更改为终点,以“到”关键字(to center, to botom)为前缀;
  • 角度现在从圆圈顶部的 0 开始,顺时针方向移动。

省略前缀时,MSIE10 将支持新语法。

于 2012-08-14T21:27:23.267 回答