how to do a color gradient in css code example
Example 1: css horizontal linear gradient
background: linear-gradient(to left, red, blue);
Example 2: linear-gradient
background: linear-gradient(to left, #333, #333 50%, #eee 100%);
Example 3: css horizontal gradient background color
.foo {
background-image: linear-gradient(red, blue);
}