JSFiddle - React, Tailwind, and code Playground

HTML

<div>
    Here is some text, <blink>this text will blink</blink>, this will not.
</div>

CSS

div {
    color: blue;
    background:red;
}
blink {
    display: inline;
    color: inherit;
    animation: blink 1s steps(1) infinite;
    -webkit-animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { color: transparent; } }
@-webkit-keyframes blink { 50% { color: transparent; } }