`text-decoration: blink` has been [deprecate in modern browsers](https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Properties/text-decoration#browser_compatibility). Need to use CSS animation like: ```html <style> @keyframes blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } } .blink { animation: blink 1s step-end infinite; } </style> This is a <span class="blink">blink text</span> ```
text-decoration: blinkhas been deprecate in modern browsers. Need to use CSS animation like: