multiple color background code example
Example 1: multiple color background
body{
background-repeat:no-repeat;
background-image:
url(http://lorempixel.com/640/100/nature/John3-16/),
linear-gradient(to right, RGB(0, 0, 0), RGB(255, 255, 255)),
linear-gradient(to right, RGB(110, 175, 233), RGB(110, 175, 233));
background-position:
0 0,
0 100px,
0 130px;
background-size:
640px 100px,
100% 30px,
100% 30px;
}
Example 2: double color background css
background: linear-gradient(<angle>, color1 color1-stop-at, color2 color2-start-at);