Chrome and Safari don’t support or even CSS’s text-decoration: blink;, but here is the solution for BLINK:
<style type="text/css"> .blink { animation: blink 1s steps(5, start) infinite; -webkit-animation: blink 1s steps(5, start) infinite; } @keyframes blink { to { visibility: hidden; } } @-webkit-keyframes blink { to { visibility: hidden; } } </style>
This is <span class="blink">blinking</span> text.
Also you can try this:
<style type="text/css"> .blink { -webkit-animation-name: blinker; -webkit-animation-iteration-count: infinite; -webkit-animation-timing-function: cubic-bezier(1.0,0,0,1.0); -webkit-animation-duration: 1s; } @-webkit-keyframes blinker { from { opacity: 1.0; } to { opacity: 0.0; } } </style>
Related posts:
Add blank item at top of dropdownlist
How to Solve The 'Object reference not set to an instance of an object' error in Batch Edit mode for...
Creating Multiline textbox using Html.Helper function in Asp.Net MVC
How to use column search in datatable when responsive is false
How to solve "Response.Redirect cannot be called in a Page callback" for DevExpress Components