colors gradients generator code example
Example 1: css gradient generator
/*CSS Gradient Generator*/
https://cssgradient.io/
/*Example*/
.My-Class {
background: linear-gradient(to right, blue/*Color1*/, dodgerblue/*Color1*/);
}
Example 2: css gradient generator
background: linear-gradient(Direction (keyword or degrees), color1 10% (10% width), color2 width (it's not neccessary), ...);