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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css color之线性linear-gradient()函数相关的知识,希望对你有一定的参考价值。

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

linear-gradient( [ <angle> | to <side-or-corner> ,]? <color-stop-list> )

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

    Definition of the gradient line        List of color stops 

where <side-or-corner> = [ left | right ] || [ top | bottom ]

  and <color-stop-list> = [ <linear-color-stop> [, <color-hint>? ]? ]#, <linear-color-stop>

  and <linear-color-stop> = <color> [ <color-stop-length> ]?

  and <color-stop-length> = [ <percentage> | <length> ]1,2

  and <color-hint> = [ <percentage>

栗子:

div

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

以上是关于css color之线性linear-gradient()函数的主要内容,如果未能解决你的问题,请参考以下文章

css3渐变属性都有哪些

CSS3颜色渐变模式总结

CSS3颜色渐变模式总结

细说css的渐变属性(conic-gradient+linear-gradient+radial-gradient)

Web前端开发工程师知识体系_18_CSS

CSS3里面的线性渐变:linear-gradient参数是啥样子的?