0
gradient with a curve between colors
I am struggling for gradient with a curve plzz help me a bit
1 Antwort
0
Do you mean something like this: https://css-tricks.com/css3-gradients/#article-header-id-4
Specifically to do just a curve, you can start the gradient on the edge of the box using code similar to the example in that link:
.gradient {
background-image:
radial-gradient(
circle at top right,
yellow,
#f06d06
);
}