-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCSS-linear-gradient-background.html
80 lines (80 loc) · 2.32 KB
/
CSS-linear-gradient-background.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CSS Linear Gradient Background</title>
<style>
h1,
h5 {
text-align: center;
}
div {
height: 15vh;
}
#l-g1 {
background: #466368;
background: linear-gradient(yellow, lightgreen, red);
}
#l-g2 {
background: #466368;
background: linear-gradient(to right bottom, yellow, lightgreen, red);
}
#l-g3 {
background: #466368;
background: linear-gradient(45deg, lightgreen 50%, red 50%);
}
#l-g4 {
background: linear-gradient(to top right, lightgreen 50%, red 50%);
}
/*
The gradient line thus doesn’t point into the top right corner, unless the background area is perfectly square—it points into the top right quadrant (quarter) of the background area.
*/
#l-g5 {
background: linear-gradient(to top right, lightgreen 50%, red 50%);
}
#l-g6 {
background-image: repeating-linear-gradient(
190deg,
rgba(0, 102, 255, 0.678),
rgba(255, 255, 0, 0.788) 7%,
rgba(0, 128, 0, 0.582) 10%
);
}
</style>
</head>
<body>
<h1>Linear Gradient Background</h1>
<h5>
The linear gradient is perfect for a gradient moving from one direction to
another
</h5>
<div id="l-g1"></div>
<h5>background: linear-gradient(yellow, lightgreen, red);</h5>
<br />
<br />
<div id="l-g2"></div>
<h5>
background: linear-gradient(to right bottom, yellow, lightgreen, red);
</h5>
<br />
<br />
<div id="l-g3"></div>
<h5>background: linear-gradient(45deg, lightgreen 50%, red 50%);</h5>
<br />
<br />
<div id="l-g4"></div>
<h5>background:linear-gradient(to top right, lightgreen 50%, red 50%)</h5>
<br />
<br />
<div id="l-g5"></div>
<h5>background:linear-gradient(to top left, green 50%, red 50%)</h5>
<!-- 315deg can be used to move the gradient to top left -->
<!-- 135deg can be used to move the gradient to right bottom -->
<div id="l-g6"></div>
<h5>
background-image: repeating-linear-gradient(190deg,blue,yellow 7%,green
10%);
</h5>
</body>
</html>