I used the blink property for text decoration and it wasn't effected. Why? | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
0

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

23rd Aug 2019, 8:54 PM
Jumain Adeniji
2 Respostas
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