I used the blink property for text decoration and it wasn't effected. Why? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

I used the blink property for text decoration and it wasn't effected. Why?

23rd Aug 2019, 8:54 PM
Jumain Adeniji
2 Answers
0
It's not really supported, it doesn't have an obvious point. But still, it's not that hard to imitate it: .blink { animation: blink 1s linear infinite; } @keyframes blink { 0% { opacity: 1; } 50% { opacity: 1; } 50.1% { opacity: 0; } 100% { opacity: 0; } }
23rd Aug 2019, 9:12 PM
Airree
Airree - avatar
0
Thank you
23rd Aug 2019, 9:20 PM
Jumain Adeniji