multiple color background css code example
Example 1: gradient image css
#show_bg_2 {
background-image:
/*two color gradient over an image*/
linear-gradient(to bottom, rgba(245, 246, 252, 0.52),
rgba(117, 19, 93, 0.73)),url('images/background.jpg');
width: 80%;
height: 400px;
background-size: cover;
}
Example 2: css linear gradient
#grad {
background-image: linear-gradient(to right, #f1b1b1 , #82e6e8);
}
Example 3: double color background css
background: linear-gradient(<angle>, color1 color1-stop-at, color2 color2-start-at);