Why blink tag is not run in the sololearn platforn and also in google chrome ? | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
+ 20

Why blink tag is not run in the sololearn platforn and also in google chrome ?

HTML

26th Jun 2017, 6:46 AM
{ sood(Hemant , Prakash); }
{ sood(Hemant , Prakash); } - avatar
2 Respostas
+ 8
<!-- Even if <blink> element is non-standard and obsolete, you can easily reproduce it's effect using Css... --> <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>
26th Jun 2017, 9:05 AM
visph
visph - avatar
+ 7
The HTMLĀ BlinkĀ Element ( <blink> ) is a non-standard element causing the enclosed text to flash slowly. Do not use this element as it is obsolete and bad design practice.Ā BlinkingĀ text is frowned upon by several accessibility standards and the CSS specification allows browsers to ignore theĀ blinkvalue.
26th Jun 2017, 8:19 AM
Ekansh