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>