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