1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<!DOCTYPE html> <html> <head> <style> .testDiv { overflow: hidden; text-overflow: ellipsis; font-size: 72px; width: 2em; color: transparent; text-shadow: 0px 0px green; } </style> </head> <body> <div class="testDiv">Blink</div> </body> </html>