background gradient color generator code example
Example 1: gradient css background
/*From bottom to top*/
background: rgb(166,166,166);
background: linear-gradient(0deg, rgba(166,166,166,1) 0%, rgba(255,255,255,1) 29%);
Example 2: css gradient generator
/* 5 Best CSS Gradient Generator Links */
https://cssgradient.io/
https://www.colorzilla.com/gradient-editor/
https://www.css-gradient.com/
https://mycolor.space/gradient
https://uigradients.com/#Orca
Example 3: css gradient generator
/*CSS Gradient Generator*/
https://cssgradient.io/
/*Example*/
.My-Class {
background: linear-gradient(to right, blue/*Color1*/, dodgerblue/*Color1*/);
}
Example 4: css gradient generator
background: linear-gradient(Direction (keyword or degrees), color1 10% (10% width), color2 width (it's not neccessary), ...);