JSFiddle - React, Tailwind, and code Playground
by milenig
HTML
<p style="background:#E1FEE0;">Human</p>
CSS
p {
display: inline;
animation: background-fade 10s forwards;
-webkit-animation: background-fade 10s forwards;
-moz-animation: background-fade 10s forwards;
}
@-webkit-keyframes background-fade {
99.9% {
background:#E1FEE0;
}
100% {
background:#000;
}
}
@-moz-keyframes background-fade {
99.9% {
background:#E1FEE0;
}
100% {
background:#000;
}
}
@keyframes background-fade {
99.9% {
background:#E1FEE0;
}
100% {
background:#000;
}
}