Hi, I'd like to report this issue, when using linear gradient with multiple colors it doesn't work for me. Below I'll post example:
Non working example:
Working example:
Difference is only on last color where I set 99.9% instead of 100%. So I'm not sure what am I doing wrong?
Non working example:
.overlay {
background-image: linear-gradient(90deg,#f47e20 0,#f47e20 4%,#203232 4%,#203232 50%,#19bef0 50%,#19bef0 71%,#d02259 71%,#d02259 100%);
}
Working example:
.overlay {
background-image: linear-gradient(90deg,#f47e20 0,#f47e20 4%,#203232 4%,#203232 50%,#19bef0 50%,#19bef0 71%,#d02259 71%,#d02259 99.9%);
}
Difference is only on last color where I set 99.9% instead of 100%. So I'm not sure what am I doing wrong?