The CSS repeating-linear-gradient() function creates an image which represents a repeating linear gradient of colors. It's similar to linear-gradient() but it automatically repeats the color stops infinitely in both directions.
Syntax | |
---|---|
CSS | repeating-linear-gradient( [ [ <angle> | to <side-or-corner> ] || <color-interpolation-method> ]? , <color-stop-list> ), where <side-or-corner> = "[ left | right ] || [ top | bottom ]", <color-stop-list> = "<linear-color-stop> , [ <linear-color-hint>? , <linear-color-stop> ]#", <linear-color-stop> = "<color> && <color-stop-length>?", <linear-color-hint> = "<length-percentage>", and <color-stop-length> = "<length-percentage>{1,2}" |