blob: 780bff97a3bd1e6677963e2fe4b80bf7df306682 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!doctype HTML>
<html>
<head>
<style>
div {
background-image: linear-gradient(green, red);
background-clip: text;
width: 150px;
color:transparent;
overflow: hidden;
opacity:0.5;
text-overflow: ellipsis;
}
</style>
</head>
<body>
<div>
<span stype="font-size: 30px;">
ALongLongLongLongLongLongLongLongLongLongLongLongString
</span>
</div>
</body>
</html>
|