Have <blink> attribute in html ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Have <blink> attribute in html ?

I think there had an attribute <blink> in html to make blink the texts... It still have in html5?

28th Feb 2017, 8:30 AM
Sartaj roshan
Sartaj roshan - avatar
5 Answers
+ 3
<span class="blink">blink</span> <style> .blink { -webkit-animation:blink 1s ease-in-out infinite; animation:blink 1s ease-in-out infinite; } @-webkit-keyframes blink { from { opacity:1; } 50% { opacity:0; } to { opacity:1; } } @keyframes blink { from { opacity:1; } 50% { opacity:0; } to { opacity:1; } } </style>
1st Mar 2017, 5:54 AM
visph
visph - avatar
+ 2
Blink was removed from html 5 because it's outdated. You can find alternatives and workarounds with javaScript and CSS... But why would you want to 🐿️
28th Feb 2017, 11:31 PM
WWXXYY XXXWWYY
WWXXYY XXXWWYY - avatar
+ 1
i think its the job of CSS3 or CSS or jQuery?.
28th Feb 2017, 1:34 PM
Hiro
Hiro - avatar
0
Sanwar
28th Feb 2017, 5:31 PM
sanwar khan
sanwar khan - avatar
0
help
28th Feb 2017, 5:31 PM
sanwar khan
sanwar khan - avatar