1/* A gradient tilted 45 degrees,
2 starting blue and finishing red */
3linear-gradient(45deg, blue, red);
4
5/* A gradient going from the bottom right to the top left corner,
6 starting blue and finishing red */
7linear-gradient(to left top, blue, red);
8
9/* Color stop: A gradient going from the bottom to top,
10 starting blue, turning green at 40% of its length,
11 and finishing red */
12linear-gradient(0deg, blue, green 40%, red);
13
14/* Color hint: A gradient going from the left to right,
15 starting red, getting to the midpoint color
16 10% of the way across the length of the gradient,
17 taking the rest of the 90% of the length to change to blue */
18linear-gradient(.25turn, red, 10%, blue);
19
20/* Multi-position color stop: A gradient tilted 45 degrees,
21 with a red bottom-left half and a blue top-right half,
22 with a hard line where the gradient changes from red to blue */
23linear-gradient(45deg, red 0 50%, blue 50% 100%);