-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgradient_bg_color.html
32 lines (31 loc) · 968 Bytes
/
gradient_bg_color.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.bg{
width: 100px; height: 100px;;
background-image: linear-gradient(to left top ,red,blue);
}
.text_trans {
font: 100px;
font-weight: bold;
background-image: linear-gradient(to right bottom , rgb(6, 234, 52), rgb(206, 2, 2));
display: inline-block;
margin-top: 400 px;
margin-left: 500px;
color: transparent;
font-size: 200px ;
-webkit-background-clip: text;
background-clip: text;
text-transform: uppercase;
}
</style>
</head>
<body>
<div class="bg"></div><br>
<div class="text_trans">thanhtung</div>
</body>
</html>