+ 1
Hi there. I was wondering if anyone can help me with this linear gradient? I don't understand why it's not working. Many thanks.
2 Antworten
+ 4
you have a line break after the parentheses.
yo have this
background:linear-gradient
(90deg,red,yellow);
Correct sintax:
background:linear-gradient(90deg,red,yellow);
0
Thank you! I didn't realise it was quite that sensitive to spaces!