css-css3渐变
CSS3 定义了两种类型的渐变(gradients): 线性渐变(Linear Gradients)- 向下/向上/向左/向右/对角方向 径向渐变(Radial Gradients)- 由它们的中心定义 css3线性渐变 语法: background: linear-gradient( direction , color-stop1 , color-stop2, ... ); 从上到下(默认): #grad { background: -webkit-linear-gradient(red, blue);/* Safari 5.1 - 6.0 */ background: -o-linear-gradient(red, blue);/* Opera 11.1 - 12.0 */ background: -moz-linear-gradient(red, blue);/* Firefox 3.6 - 15 */ background: linear-gradient(red, blue); /* 标准的语法 */ } 从左到右: #grad { background: -webkit-linear-gradient(left,red, blue);/* Safari 5.1 - 6.0 */ background: -o-linear-gradient