css揭秘
一:渐变 线性渐变(Linear Gradients)- 向下/向上/向左/向右/对角方向 background: linear-gradient( direction , color-stop1 , color-stop2, ... ); 径向渐变(Radial Gradients)- 由它们的中心定义 background: radial-gradient( center, shape size, start-color, ..., last-color ); 重复的径向渐变 background: repeating-radial-gradient ( center, shape size, start-color, ..., last-color ); 补充: shape 参数定义了形状。它可以是值 circle 或 ellipse。其中,circle 表示圆形,ellipse 表示椭圆形。默认值是 ellipse。 size 参数定义了渐变的大小。它可以是以下四个值: closest-side farthest-side closest-corner farthest-corner #grad { background : - webkit - radial - gradient ( circle , red , yellow , green ); /*