What font should be used for blinking text?
blink { -webkit-animation: blink 1s steps(5, start) infinite; -moz-animation: blink 1s steps(5, start) infinite; -o-animation: blink 1s steps(5, start) infinite; animation: blink 1s steps(5, start) infinite; } @-webkit-keyframes blink { to { visibility: hidden; } } @-moz-keyframes blink { to { visibility: hidden; } } @-o-keyframes blink { to { visibility: hidden; } } @-keyframes blink { to { visibility: hidden; } }