css color之线性linear-gradient()函数

CSS linear-gradient() 函数用于创建一个表示两种或多种颜色线性渐变的图片。其结果属于数据类型,是一种特别的数据类型。

linear-gradient( [ | to ,]? )

  \---------------------------------/ \----------------------------/

    Definition of the gradient line        List of color stops 

where = [ left | right ] || [ top | bottom ]

  and = [ [, ? ]? ]#,

  and = [ ]?

  and = [ | ]{1,2}

  and = [

PS:是否可用于任何元素,包括文本??

栗子:

div {

  background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);

}

你可能感兴趣的:(css color之线性linear-gradient()函数)