-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdding gradient style through CSS .html
More file actions
58 lines (56 loc) · 1.38 KB
/
Adding gradient style through CSS .html
File metadata and controls
58 lines (56 loc) · 1.38 KB
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
/* Adding gradient style through CSS */
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="style.css" />
<style>
body {
display: flex;
flex-direction: column;
align-items: center;
}
.margin {
margin-top: 10px;
}
.div {
height: 300px;
width: 300px;
border: 1px solid black;
background-image: linear-gradient(red, blue);
/*
upre red and niche blue
ebhabe ekta gradient ashbeh
*/
}
.div2 {
height: 300px;
width: 300px;
border: 1px solid black;
background-image: linear-gradient(red 80%, blue);
/*
total gradient color'r 80% thakbe red
and baki 20% thakbeh blue
*/
}
.div3 {
height: 300px;
width: 300px;
border: 1px solid black;
background-image: linear-gradient(to left, red, blue);
/*
to left dile
right to left'r dike jabeh
mane redd color ta right e thakbeh and blue color ta left e thakbe
*/
}
</style>
</head>
<body>
<div class="div margin"></div>
<div class="div2 margin"></div>
<div class="div3 margin"></div>
</body>
</html>