How many times a repeating-linear-gradient repeats itself ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How many times a repeating-linear-gradient repeats itself ?

Check the code : https://code.sololearn.com/WvQSJdLo6S1i/?ref=app As you can see i have set { repeating-linear-gradient(to bottom, orange 10%, yellow 20%); }. I think that each segment will take 20% length. There should be only 5 repetitions, but there are 10. Where am I wrong ?

7th Aug 2022, 7:23 AM
Akash Kumar
Akash Kumar - avatar
2 Answers
+ 4
Put orange 0%
7th Aug 2022, 7:41 AM
A͢J
A͢J - avatar
0
Conclusion : the width of each segment is equal to difference of position of first and last color stop of the gradient. For horizontal : 20% - 10% = 10% For Vertical: 20% - 0% = 20%
7th Aug 2022, 11:47 AM
Akash Kumar
Akash Kumar - avatar