How do I add gradient background to my triangle? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How do I add gradient background to my triangle?

This is the triangle: .triangulo { width: 0; height: 0; border-right: 100px solid transparent; border-top: 100px solid transparent; border-left: 100px solid transparent; border-bottom: 100px solid #f0ad4e; } And this is the gradient: background: #2b5876;  background: -webkit-linear-gradient(to right, #4e4376, #2b5876); background: linear-gradient(to right, #4e4376, #2b5876);

20th Sep 2018, 7:50 PM
Diego Fagundez
Diego Fagundez - avatar
2 Answers
+ 2
Do NOT use multiple "background" property, for 1element
20th Sep 2018, 8:06 PM
Dlite
Dlite - avatar
+ 1
Well, for browser compatability, when you are using gradients, it is a good idea to list the non-gradient background first as a fallback in case the subsequent gradient ones can't be read. However, having more than one gradient background is confusing to a person reading the code as only the last one will be read by the browser. Adding reference: https://css-tricks.com/examples/CSS3Gradient/
21st Sep 2018, 1:44 AM
Janning⭐
Janning⭐ - avatar