css3属性之---背景渐变linear-gradient()
定义与用法 linear-gradient() 函数用于创建一个线性渐变的 "图像"。 为了创建一个线性渐变,你需要设置一个起始点和一个方向(指定为一个角度)的渐变效果。你还要定义终止色。终止色就是你想让Gecko去平滑的过渡,并且你必须指定至少两种,当然也会可以指定更多的颜色去创建更复杂的渐变效果。 CSS 语法 background-image: linear-gradient(direction, color-stop1, color-stop2, ...); direction: 用角度值指定渐变方向(或角度) color-stop1, color-stop2, ...: 用于指定渐变的起止颜色 案例 1. 默认渐变方向是 从上至下 background: linear-gradient(yellow, green) 2. 可以用角度值定义渐变方向(可以写成角度 deg) background: linear-gradient(to top, yellow, green) /*to top 从下至上 相当于 0deg*/ background: linear-gradient(to right, yellow, green) /*to right 从下至上 相当于 90deg*/ background: linear-gradient(to bottom, yellow,