Published
- 1 min read
hard blink
The solution for this is noted below
hard blink
Solution
.blink {
animation: blink 1s step-start infinite;
}
@keyframes blink {
50% {
opacity: 0;
}
}
Try other methods by searching on the site. That is if this doesn’t work