Overlapping colours | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Overlapping colours

If you put in 3 colours with the same px value e.g. background:-moz-linear-gradient(blue 20px. red 20px, yellow 20px) The red gets bypassed and there is a shared line between blue and yellow. Any ideas why this is? Why isn't there a solid line between 'blue and red' and 'red and yellow'?

8th Jan 2019, 3:32 PM
Jon-Marc
Jon-Marc - avatar
1 Answer
+ 2
background-image: linear-gradient( blue, blue 19.5px, red 19.5px, red 20.5px, yellow 20.5px );
8th Jan 2019, 4:48 PM
Gordon
Gordon - avatar